Debug starts a new message with debug level. You must call Msg on the returned event in order to send the event.
()
| 346 | // |
| 347 | // You must call Msg on the returned event in order to send the event. |
| 348 | func (l *Logger) Debug() *Event { |
| 349 | return l.newEvent(DebugLevel, nil) |
| 350 | } |
| 351 | |
| 352 | // Info starts a new message with info level. |
| 353 | // |