Uint64 adds the field key with i as a uint64 to the *Event context.
(key string, i uint64)
| 696 | |
| 697 | // Uint64 adds the field key with i as a uint64 to the *Event context. |
| 698 | func (e *Event) Uint64(key string, i uint64) *Event { |
| 699 | if e == nil { |
| 700 | return e |
| 701 | } |
| 702 | e.buf = enc.AppendUint64(enc.AppendKey(e.buf, key), i) |
| 703 | return e |
| 704 | } |
| 705 | |
| 706 | // Uints64 adds the field key with i as a []int64 to the *Event context. |
| 707 | func (e *Event) Uints64(key string, i []uint64) *Event { |