Codebase list golang-github-go-kit-kit / 3b9658d9-4065-4804-9af8-16961c419f60/v0.6.0 log / nop_logger.go
3b9658d9-4065-4804-9af8-16961c419f60/v0.6.0

Tree @3b9658d9-4065-4804-9af8-16961c419f60/v0.6.0 (Download .tar.gz)

nop_logger.go @3b9658d9-4065-4804-9af8-16961c419f60/v0.6.0raw · history · blame

1
2
3
4
5
6
7
8
package log

type nopLogger struct{}

// NewNopLogger returns a logger that doesn't do anything.
func NewNopLogger() Logger { return nopLogger{} }

func (nopLogger) Log(...interface{}) error { return nil }