Home | History | Annotate | Download | only in logger

Lines Matching defs:Println

50 	// Arguments to Println are handled in the manner of fmt.Println
51 Println(v ...interface{})
208 s.Println(p)
249 // Println prints to both stderr and the file log.
250 // Arguments are handled in the manner of fmt.Println.
251 func (s *stdLogger) Println(v ...interface{}) {
270 // Verboseln is equivalent to Println, but only goes to the file log unless
293 // Fatalln is equivalent to Println() followed by a call to panic() that
315 // Panicln is equivalent to Println() followed by a call to panic().