Info starts a new message with info level. You must call Msg on the returned event in order to send the event.
()
| 64 | // |
| 65 | // You must call Msg on the returned event in order to send the event. |
| 66 | func Info() *zerolog.Event { |
| 67 | return Logger.Info() |
| 68 | } |
| 69 | |
| 70 | // Warn starts a new message with warn level. |
| 71 | // |