Home | History | Annotate | Download | only in log

Lines Matching defs:Output

6 // with methods for formatting output. It also has a predefined 'standard'
11 // Every log message is output on a separate line: if the message being
47 // output to an io.Writer. Each logging operation makes a single call to
54 out io.Writer // destination for output
66 // SetOutput sets the output destination for the logger.
139 // Output writes the output for a logging event. The string s contains
145 func (l *Logger) Output(calldepth int, s string) error {
172 // Printf calls l.Output to print to the logger.
175 l.Output(2, fmt.Sprintf(format, v...))
178 // Print calls l.Output to print to the logger.
180 func (l *Logger) Print(v ...interface{}) { l.Output(2, fmt.Sprint(v...)) }
182 // Println calls l.Output to print to the logger.
184 func (l *Logger) Println(v ...interface{}) { l.Output(2, fmt.Sprintln(v...)) }
188 l.Output(2, fmt.Sprint(v...))
194 l.Output(2, fmt.Sprintf(format, v...))
200 l.Output(2, fmt.Sprintln(v...))
207 l.Output(2, s)
214 l.Output(2, s)
221 l.Output(2, s)
225 // Flags returns the output flags for the logger.
232 // SetFlags sets the output flags for the logger.
239 // Prefix returns the output prefix for the logger.
246 // SetPrefix sets the output prefix for the logger.
253 // SetOutput sets the output destination for the standard logger.
260 // Flags returns the output flags for the standard logger.
265 // SetFlags sets the output flags for the standard logger.
270 // Prefix returns the output prefix for the standard logger.
275 // SetPrefix sets the output prefix for the standard logger.
282 // Print calls Output to print to the standard logger.
285 std.Output(2, fmt.Sprint(v...))
288 // Printf calls Output to print to the standard logger.
291 std.Output(2, fmt.Sprintf(format, v...))
294 // Println calls Output to print to the standard logger.
297 std.Output(2, fmt.Sprintln(v...))
302 std.Output(2, fmt.Sprint(v...))
308 std.Output(2, fmt.Sprintf(format, v...))
314 std.Output(2, fmt.Sprintln(v...))
321 std.Output(2, s)
328 std.Output(2, s)
335 std.Output(2, s)
339 // Output writes the output for a logging event. The string s contains
345 // for the caller of Output.
346 func Output(calldepth int, s string) error {
347 return std.Output(calldepth+1, s) // +1 for this frame.