reg/vendor/github.com/docker/go-connections/proxy/logger.go
Jess Frazelle 843aebf2c1
update deps
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
2018-07-14 11:48:41 -04:00

12 lines
190 B
Go

package proxy
type logger interface {
Printf(format string, args ...interface{})
}
type noopLogger struct{}
func (l *noopLogger) Printf(_ string, _ ...interface{}) {
// Do nothing :)
}