gitee.com/lh-her-team/common@v1.5.1/log/logger_interface.go (about)

     1  package log
     2  
     3  type LoggerInterface interface {
     4  	Debugf(format string, args ...interface{})
     5  	Infof(format string, args ...interface{})
     6  	Warnf(format string, args ...interface{})
     7  	Errorf(format string, args ...interface{})
     8  
     9  	Debug(args ...interface{})
    10  	Info(args ...interface{})
    11  	Warn(args ...interface{})
    12  	Error(args ...interface{})
    13  }