syft/imgbom/logger/logger.go
2020-05-21 15:54:54 -04:00

11 lines
271 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{})
WithFields(map[string]interface{}) Logger
}