youtu_ecpm/pkg/log/logger.go
2025-01-15 10:09:03 +08:00

18 lines
424 B
Go

package log
//
//type Log interface {
// Debug(v ...interface{})
// Info(v ...interface{})
// Warn(v ...interface{})
// Error(v ...interface{})
// Fatal(v ...interface{})
// Panic(v ...interface{})
//
// Debugf(format string, v ...interface{})
// Infof(template string, args ...interface{})
// Errorf(format string, v ...interface{})
// Warnf(format string, v ...interface{})
// Panicf(format string, v ...interface{})
//}