Fix default prefix format.

This commit is contained in:
2022-11-03 15:13:47 -05:00
parent c0f818ef30
commit f3dbac0896
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ proc getLoggerForNamespace*(
if msgPrefix.isSome:
return initLoggingNamespace(namespace, level, msgPrefix.get)
else:
return initLoggingNamespace(namespace, level, namespace)
return initLoggingNamespace(namespace, level, namespace & ": ")
proc setLevelForNamespace*(namespace: string, lvl: Level, recursive = false) =
if recursive: