Merge branch 'add-debug-logger' into 'main'

Add logging.Debug() function

See merge request whom/bingobot!10
This commit is contained in:
piper pentagram 2024-11-09 01:09:19 +00:00
commit abb19b8748

View file

@ -35,6 +35,10 @@ func Init(appConfig *config.AppConfig) {
}
}
func Debug(msg string, args ...any) {
logger.Debug(msg, args...)
}
func Info(msg string, args ...any) {
logger.Info(msg, args...)
}