Home | History | Annotate | Download | only in logger

Lines Matching defs:Output

17 // output between stderr and a rotating log file.
23 // omitted from the stderr output for better readability.
70 // Output writes the string to both stderr and the file log.
71 Output(calldepth int, str string) error
138 // the user doesn't need to see the output.
202 // Output writes string to both stderr and the file log.
203 func (s *stdLogger) Output(calldepth int, str string) error {
204 s.stderr.Output(calldepth+1, str)
205 return s.fileLogger.Output(calldepth+1, str)
208 // VerboseOutput is equivalent to Output, but only goes to the file log
212 s.stderr.Output(calldepth+1, str)
214 return s.fileLogger.Output(calldepth+1, str)
220 output := fmt.Sprint(v...)
221 s.Output(2, output)
227 output := fmt.Sprintf(format, v...)
228 s.Output(2, output)
234 output := fmt.Sprintln(v...)
235 s.Output(2, output)
241 output := fmt.Sprint(v...)
242 s.VerboseOutput(2, output)
248 output := fmt.Sprintf(format, v...)
249 s.VerboseOutput(2, output)
255 output := fmt.Sprintln(v...)
256 s.VerboseOutput(2, output)
262 output := fmt.Sprint(v...)
263 s.Output(2, output)
264 panic(fatalLog(errors.New(output)))
270 output := fmt.Sprintf(format, v...)
271 s.Output(2, output)
272 panic(fatalLog(errors.New(output)))
278 output := fmt.Sprintln(v...)
279 s.Output(2, output)
280 panic(fatalLog(errors.New(output)))
285 output := fmt.Sprint(v...)
286 s.Output(2, output)
287 panic(output)
292 output := fmt.Sprintf(format, v...)
293 s.Output(2, output)
294 panic(output)
299 output := fmt.Sprintln(v...)
300 s.Output(2, output)
301 panic(output)