Add logging.Debug() function

This commit is contained in:
Piper Pentagram 2024-11-08 17:07:55 -08:00
parent e89e3bbac9
commit cb55b48893

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...)
}