core/log/interface.go

14 lines
365 B
Go
Raw Normal View History

2023-05-19 04:12:21 +00:00
package log
type Logger interface {
Printf(s string, v ...interface{})
Panicf(s string, v ...interface{})
Fatalf(s string, v ...interface{})
Infof(s string, v ...interface{})
Eventf(s string, v ...interface{})
Warnf(s string, v ...interface{})
Debugf(s string, v ...interface{})
Highlightf(s string, v ...interface{})
Errorf(s string, v ...interface{})
}