D | logger.go | 72 Output(calldepth int, str string) error methodSpec 221 func (s *stdLogger) Output(calldepth int, str string) error { func 222 s.stderr.Output(calldepth+1, str) 223 return s.fileLogger.Output(calldepth+1, str) 230 s.stderr.Output(calldepth+1, str) 232 return s.fileLogger.Output(calldepth+1, str) 239 s.Output(2, output) 246 s.Output(2, output) 253 s.Output(2, output) 281 s.Output(2, output) [all …]
|