Any is a wrapper around Event.Interface.
(key string, i interface{})
| 818 | |
| 819 | // Any is a wrapper around Event.Interface. |
| 820 | func (e *Event) Any(key string, i interface{}) *Event { |
| 821 | return e.Interface(key, i) |
| 822 | } |
| 823 | |
| 824 | // Interface adds the field key with i marshaled using reflection. |
| 825 | func (e *Event) Interface(key string, i interface{}) *Event { |