internal/logger/loggerwrapper.go (7 lines of code) (raw):

package logger type Wrapper interface { Debug(format string, v ...interface{}) Info(format string, v ...interface{}) Warn(format string, v ...interface{}) Error(format string, v ...interface{}) }