Ints16 adds the field key with i as a []int16 to the logger context.
(key string, i []int16)
| 278 | |
| 279 | // Ints16 adds the field key with i as a []int16 to the logger context. |
| 280 | func (c Context) Ints16(key string, i []int16) Context { |
| 281 | c.l.context = enc.AppendInts16(enc.AppendKey(c.l.context, key), i) |
| 282 | return c |
| 283 | } |
| 284 | |
| 285 | // Int32 adds the field key with i as a int32 to the logger context. |
| 286 | func (c Context) Int32(key string, i int32) Context { |
nothing calls this directly
no test coverage detected