From 541bb1ad10ed8b22a16d536e917a75affa34e533 Mon Sep 17 00:00:00 2001 From: brent s Date: Sat, 27 Feb 2021 00:32:46 -0500 Subject: [PATCH] log initialization to the new log --- logging/funcs.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/logging/funcs.go b/logging/funcs.go index e85c969..122bbab 100644 --- a/logging/funcs.go +++ b/logging/funcs.go @@ -112,6 +112,8 @@ func GetLogger(enableDebug bool, prefix string, logpaths ...string) (logger Logg logger.setPrefix(prefix) } + logger.Info("logger initialized of type %T", logger) + return }