posh/pkg/log/logger.go
Kevin Franklin Kim e2ad376b6c initial commit
2023-01-03 15:37:15 +01:00

19 lines
463 B
Go

package log
type Logger interface {
Level() Level
Print(a ...interface{})
Printf(format string, a ...interface{})
Debug(a ...interface{})
Debugf(format string, a ...interface{})
Info(a ...interface{})
Infof(format string, a ...interface{})
Warn(a ...interface{})
Warnf(format string, a ...interface{})
Error(a ...interface{})
Errorf(format string, a ...interface{})
Fatal(a ...interface{})
Fatalf(format string, a ...interface{})
Must(err error)
}