Debug starts a new message with debug level. You must call Msg on the returned event in order to send the event.
()
| 57 | // |
| 58 | // You must call Msg on the returned event in order to send the event. |
| 59 | func Debug() *zerolog.Event { |
| 60 | return Logger.Debug() |
| 61 | } |
| 62 | |
| 63 | // Info starts a new message with info level. |
| 64 | // |