Info starts a new message with info level. You must call Msg on the returned event in order to send the event.
()
| 353 | // |
| 354 | // You must call Msg on the returned event in order to send the event. |
| 355 | func (l *Logger) Info() *Event { |
| 356 | return l.newEvent(InfoLevel, nil) |
| 357 | } |
| 358 | |
| 359 | // Warn starts a new message with warn level. |
| 360 | // |