diff --git a/internal/app/log.go b/internal/app/log.go index 9ec89a2c..61fd474c 100644 --- a/internal/app/log.go +++ b/internal/app/log.go @@ -14,6 +14,8 @@ import ( var MemoryLog = newBuffer() func GetLogger(module string) zerolog.Logger { + Logger.Trace().Str("module", module).Msgf("[log] init") + if s, ok := modules[module]; ok { lvl, err := zerolog.ParseLevel(s) if err == nil {