mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
11 lines
271 B
Go
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
|
|
}
|