mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 08:23:15 +01:00
16 lines
405 B
Go
16 lines
405 B
Go
/*
|
|
Defines the logging interface which is used throughout the syft library.
|
|
*/
|
|
package logger
|
|
|
|
type Logger interface {
|
|
Errorf(format string, args ...interface{})
|
|
Error(args ...interface{})
|
|
Warnf(format string, args ...interface{})
|
|
Warn(args ...interface{})
|
|
Infof(format string, args ...interface{})
|
|
Info(args ...interface{})
|
|
Debugf(format string, args ...interface{})
|
|
Debug(args ...interface{})
|
|
}
|