mirror of
https://github.com/eyebluecn/tank.git
synced 2024-04-21 12:32:16 +00:00
15 lines
358 B
Go
15 lines
358 B
Go
package core
|
|
|
|
type Logger interface {
|
|
|
|
//处理日志的统一方法。
|
|
Log(prefix string, format string, v ...interface{})
|
|
|
|
//不同级别的日志处理
|
|
Debug(format string, v ...interface{})
|
|
Info(format string, v ...interface{})
|
|
Warn(format string, v ...interface{})
|
|
Error(format string, v ...interface{})
|
|
Panic(format string, v ...interface{})
|
|
}
|