mirror of
https://github.com/anchore/syft.git
synced 2025-11-18 00:43:20 +01:00
10 lines
228 B
Go
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{})
|
|
}
|