Println sends a log event using debug level and no extra field. Arguments are handled in the manner of fmt.Println.
(v ...interface{})
| 468 | // Println sends a log event using debug level and no extra field. |
| 469 | // Arguments are handled in the manner of fmt.Println. |
| 470 | func (l *Logger) Println(v ...interface{}) { |
| 471 | if e := l.Debug(); e.Enabled() { |
| 472 | e.CallerSkipFrame(1).Msg(fmt.Sprintln(v...)) |
| 473 | } |
| 474 | } |
| 475 | |
| 476 | // Write implements the io.Writer interface. This is useful to set as a writer |
| 477 | // for the standard library log. |