We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2bc10e commit ae301afCopy full SHA for ae301af
beacon_chain/nimbus_binary_common.nim
@@ -83,7 +83,7 @@ proc updateLogLevel*(logLevel: string) {.raises: [Defect, ValueError].} =
83
# Updates log levels (without clearing old ones)
84
let directives = logLevel.split(";")
85
try:
86
- setLogLevel(parseEnum[LogLevel](directives[0]))
+ setLogLevel(parseEnum[LogLevel](directives[0].capitalizeAscii()))
87
except ValueError:
88
raise (ref ValueError)(msg: "Please specify one of TRACE, DEBUG, INFO, NOTICE, WARN, ERROR or FATAL")
89
0 commit comments