Home | History | Annotate | Download | only in logger

Lines Matching defs:Verbose

19 // In addition to the standard logger functions, Verbose[f|ln] calls only go to
53 // Verbose* is equivalent to Print*, but skips stderr unless the
54 // logger has been configured in verbose mode.
55 Verbose(v ...interface{})
137 verbose bool
156 // SetVerbose controls whether Verbose[f|ln] logs to stderr as well as the
159 s.verbose = v
223 if s.verbose {
250 // Verbose is equivalent to Print, but only goes to the file log unless
252 func (s *stdLogger) Verbose(v ...interface{}) {