mirror of
https://github.com/anchore/syft
synced 2024-11-10 14:24:12 +00:00
9 lines
368 B
Go
9 lines
368 B
Go
package log
|
|
|
|
type nopLogger struct{}
|
|
|
|
func (l *nopLogger) Errorf(format string, args ...interface{}) {}
|
|
func (l *nopLogger) Infof(format string, args ...interface{}) {}
|
|
func (l *nopLogger) Info(args ...interface{}) {}
|
|
func (l *nopLogger) Debugf(format string, args ...interface{}) {}
|
|
func (l *nopLogger) Debug(args ...interface{}) {}
|