Codebase list golang-github-go-kit-kit / 2fbb1fc
add message describing default behavior Victor Vrantchan 6 years ago
1 changed file(s) with 2 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
6868
6969 // New wraps the logger and implements level checking. See the commentary on the
7070 // Option functions for a detailed description of how to configure levels.
71 // If no options are provided, all leveled log events created with level.Debug,
72 // Info, Warn or Error helper methods will be squelched.
7173 func New(next log.Logger, options ...Option) log.Logger {
7274 l := logger{
7375 next: next,