(format string, v ...interface{})
| 370 | } |
| 371 | |
| 372 | func (l *Logger) Printf(format string, v ...interface{}) { |
| 373 | s := fmt.Sprintf(format, v...) |
| 374 | l.output(1, nil, 0, s) |
| 375 | } |
| 376 | |
| 377 | func (l *Logger) Println(v ...interface{}) { |
| 378 | s := fmt.Sprintln(v...) |
no test coverage detected