Uint64 adds the field key with i as a uint64 to the logger context.
(key string, i uint64)
| 356 | |
| 357 | // Uint64 adds the field key with i as a uint64 to the logger context. |
| 358 | func (c Context) Uint64(key string, i uint64) Context { |
| 359 | c.l.context = enc.AppendUint64(enc.AppendKey(c.l.context, key), i) |
| 360 | return c |
| 361 | } |
| 362 | |
| 363 | // Uints64 adds the field key with i as a []uint64 to the logger context. |
| 364 | func (c Context) Uints64(key string, i []uint64) Context { |
nothing calls this directly
no test coverage detected