reg/vendor/github.com/docker/go-connections/proxy/logger.go

12 lines
190 B
Go
Raw Normal View History

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