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=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",
]; ];

View File

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