...

Source file src/github.com/go-kit/kit/log/nop_logger.go

Documentation: github.com/go-kit/kit/log

     1  package log
     2  
     3  import "github.com/go-kit/log"
     4  
     5  // NewNopLogger returns a logger that doesn't do anything.
     6  func NewNopLogger() Logger {
     7  	return log.NewNopLogger()
     8  }
     9  

View as plain text