mirror of https://github.com/status-im/js-waku.git
test: doc specifies log level capitalized
This commit is contained in:
parent
f0eb925838
commit
d2bb50adda
|
@ -16,7 +16,7 @@ describe("nwaku", () => {
|
|||
"--rpc=true",
|
||||
"--rpc-admin=true",
|
||||
"--websocket-support=true",
|
||||
"--log-level=debug",
|
||||
"--log-level=DEBUG",
|
||||
"--ports-shift=42",
|
||||
];
|
||||
|
||||
|
|
|
@ -56,13 +56,13 @@ export interface Args {
|
|||
}
|
||||
|
||||
export enum LogLevel {
|
||||
Error = "error",
|
||||
Info = "info",
|
||||
Warn = "warn",
|
||||
Debug = "debug",
|
||||
Trace = "trace",
|
||||
Notice = "notice",
|
||||
Fatal = "fatal",
|
||||
Error = "ERROR",
|
||||
Info = "INFO",
|
||||
Warn = "WARN",
|
||||
Debug = "DEBUG",
|
||||
Trace = "TRACE",
|
||||
Notice = "NOTICE",
|
||||
Fatal = "FATAL",
|
||||
}
|
||||
|
||||
export interface KeyPair {
|
||||
|
|
Loading…
Reference in New Issue