mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
11 lines
434 B
Go
11 lines
434 B
Go
package log
|
|
|
|
type nopLogger struct{}
|
|
|
|
func (l *nopLogger) Errorf(format string, args ...interface{}) {}
|
|
func (l *nopLogger) Error(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{}) {}
|