Files
virtual-kubelet/vendor/github.com/docker/go-connections/proxy/logger.go
2017-12-05 17:53:58 -06: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 :)
}