Ints adds the field key with i as a []int to the *Event context.
(key string, i []int)
| 543 | |
| 544 | // Ints adds the field key with i as a []int to the *Event context. |
| 545 | func (e *Event) Ints(key string, i []int) *Event { |
| 546 | if e == nil { |
| 547 | return e |
| 548 | } |
| 549 | e.buf = enc.AppendInts(enc.AppendKey(e.buf, key), i) |
| 550 | return e |
| 551 | } |
| 552 | |
| 553 | // Int8 adds the field key with i as a int8 to the *Event context. |
| 554 | func (e *Event) Int8(key string, i int8) *Event { |