mirror of https://github.com/waku-org/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=true",
|
||||||
"--rpc-admin=true",
|
"--rpc-admin=true",
|
||||||
"--websocket-support=true",
|
"--websocket-support=true",
|
||||||
"--log-level=debug",
|
"--log-level=DEBUG",
|
||||||
"--ports-shift=42",
|
"--ports-shift=42",
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -56,13 +56,13 @@ export interface Args {
|
||||||
}
|
}
|
||||||
|
|
||||||
export enum LogLevel {
|
export enum LogLevel {
|
||||||
Error = "error",
|
Error = "ERROR",
|
||||||
Info = "info",
|
Info = "INFO",
|
||||||
Warn = "warn",
|
Warn = "WARN",
|
||||||
Debug = "debug",
|
Debug = "DEBUG",
|
||||||
Trace = "trace",
|
Trace = "TRACE",
|
||||||
Notice = "notice",
|
Notice = "NOTICE",
|
||||||
Fatal = "fatal",
|
Fatal = "FATAL",
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface KeyPair {
|
export interface KeyPair {
|
||||||
|
|
Loading…
Reference in New Issue