Log starts a new message with no level. Setting zerolog.GlobalLevel to zerolog.Disabled will still disable events produced by this method. You must call Msg on the returned event in order to send the event.
()
| 109 | // |
| 110 | // You must call Msg on the returned event in order to send the event. |
| 111 | func Log() *zerolog.Event { |
| 112 | return Logger.Log() |
| 113 | } |
| 114 | |
| 115 | // Print sends a log event using debug level and no extra field. |
| 116 | // Arguments are handled in the manner of fmt.Print. |