Send is equivalent to calling Msg(""). NOTICE: once this method is called, the *Event should be disposed.
()
| 123 | // |
| 124 | // NOTICE: once this method is called, the *Event should be disposed. |
| 125 | func (e *Event) Send() { |
| 126 | if e == nil { |
| 127 | return |
| 128 | } |
| 129 | e.msg("") |
| 130 | } |
| 131 | |
| 132 | // Msgf sends the event with formatted msg added as the message field if not empty. |
| 133 | // |