Home | History | Annotate | Download | only in log

Lines Matching defs:Print

7 // Logger accessible through helper functions Print[f|ln], Fatal[f|ln], and
144 // the text to print after the prefix specified by the flags of the
176 // Printf calls l.Output to print to the logger.
182 // Print calls l.Output to print to the logger.
183 // Arguments are handled in the manner of fmt.Print.
184 func (l *Logger) Print(v ...interface{}) { l.Output(2, fmt.Sprint(v...)) }
186 // Println calls l.Output to print to the logger.
190 // Fatal is equivalent to l.Print() followed by a call to os.Exit(1).
208 // Panic is equivalent to l.Print() followed by a call to panic().
286 // Print calls Output to print to the standard logger.
287 // Arguments are handled in the manner of fmt.Print.
288 func Print(v ...interface{}) {
292 // Printf calls Output to print to the standard logger.
298 // Println calls Output to print to the standard logger.
304 // Fatal is equivalent to Print() followed by a call to os.Exit(1).
322 // Panic is equivalent to Print() followed by a call to panic().
344 // the text to print after the prefix specified by the flags of the
348 // if Llongfile or Lshortfile is set; a value of 1 will print the details