test: doc specifies log level capitalized

This commit is contained in:
fryorcraken.eth 2022-08-20 12:34:36 +10:00
parent f0eb925838
commit d2bb50adda
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4
2 changed files with 8 additions and 8 deletions

View File

@ -16,7 +16,7 @@ describe("nwaku", () => {
"--rpc=true",
"--rpc-admin=true",
"--websocket-support=true",
"--log-level=debug",
"--log-level=DEBUG",
"--ports-shift=42",
];

View File

@ -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 {