parent
a2bc10e51c
commit
ae301af291
|
@ -83,7 +83,7 @@ proc updateLogLevel*(logLevel: string) {.raises: [Defect, ValueError].} =
|
||||||
# Updates log levels (without clearing old ones)
|
# Updates log levels (without clearing old ones)
|
||||||
let directives = logLevel.split(";")
|
let directives = logLevel.split(";")
|
||||||
try:
|
try:
|
||||||
setLogLevel(parseEnum[LogLevel](directives[0]))
|
setLogLevel(parseEnum[LogLevel](directives[0].capitalizeAscii()))
|
||||||
except ValueError:
|
except ValueError:
|
||||||
raise (ref ValueError)(msg: "Please specify one of TRACE, DEBUG, INFO, NOTICE, WARN, ERROR or FATAL")
|
raise (ref ValueError)(msg: "Please specify one of TRACE, DEBUG, INFO, NOTICE, WARN, ERROR or FATAL")
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue