feat(logx) add print without format

This commit is contained in:
黎白南 2021-10-10 21:06:28 +08:00
parent aac12f93f4
commit 51517da519
1 changed files with 6 additions and 0 deletions

View File

@ -32,5 +32,11 @@ type logInterface interface {
Error(format string, msg ...interface{})
Panic(format string, msg ...interface{})
Debugln(msg ...interface{})
Infoln(msg ...interface{})
Warnln(msg ...interface{})
Errorln(msg ...interface{})
Panicln(msg ...interface{})
Print(level string, format string, msg ...interface{})
}