Home | History | Annotate | Download | only in logger

Lines Matching refs:Println

50 	// Arguments to Println are handled in the manner of fmt.Println
51 Println(v ...interface{})
202 s.Println(p)
243 // Println prints to both stderr and the file log.
244 // Arguments are handled in the manner of fmt.Println.
245 func (s *stdLogger) Println(v ...interface{}) {
264 // Verboseln is equivalent to Println, but only goes to the file log unless
287 // Fatalln is equivalent to Println() followed by a call to panic() that
309 // Panicln is equivalent to Println() followed by a call to panic().