Add logging.Debug() function
This commit is contained in:
parent
e89e3bbac9
commit
cb55b48893
1 changed files with 4 additions and 0 deletions
|
|
@ -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) {
|
func Info(msg string, args ...any) {
|
||||||
logger.Info(msg, args...)
|
logger.Info(msg, args...)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue