10 lines
270 B
Go
10 lines
270 B
Go
package logger
|
|
|
|
// Logger provides logging facilities to the library.
|
|
type Logger interface {
|
|
Debugf(format string, args ...interface{})
|
|
Infof(format string, args ...interface{})
|
|
Warnf(format string, args ...interface{})
|
|
Errorf(format string, args ...interface{})
|
|
}
|