syft/imgbom/logger/logger.go
2020-05-23 19:22:52 -04:00

10 lines
228 B
Go

package logger
type Logger interface {
Errorf(format string, args ...interface{})
Infof(format string, args ...interface{})
Info(args ...interface{})
Debugf(format string, args ...interface{})
Debug(args ...interface{})
}