This commit is contained in:
2024-11-15 20:41:34 +07:00
parent e99a0a921d
commit 1f83105c8c
5 changed files with 43 additions and 47 deletions

28
log.go
View File

@ -53,20 +53,20 @@ func NewLog() *log.Logger {
}
// Info ...
func Info(format string, v ...interface{}) {
log.Infof(format, v...)
}
// func Info(format string, v ...interface{}) {
// log.Infof(format, v...)
// }
// Warn ...
func Warn(format string, v ...interface{}) {
log.Warnf(format, v...)
}
// // Warn ...
// func Warn(format string, v ...interface{}) {
// log.Warnf(format, v...)
// }
// Error ...
func Error(format string, v ...interface{}) {
log.Errorf(format, v...)
}
// // Error ...
// func Error(format string, v ...interface{}) {
// log.Errorf(format, v...)
// }
func Debug(format string, v ...interface{}) {
log.Debugf(format, v...)
}
// func Debug(format string, v ...interface{}) {
// log.Debugf(format, v...)
// }