Int8 adds the field key with i as a int8 to the logger context.
(key string, i int8)
| 260 | |
| 261 | // Int8 adds the field key with i as a int8 to the logger context. |
| 262 | func (c Context) Int8(key string, i int8) Context { |
| 263 | c.l.context = enc.AppendInt8(enc.AppendKey(c.l.context, key), i) |
| 264 | return c |
| 265 | } |
| 266 | |
| 267 | // Ints8 adds the field key with i as a []int8 to the logger context. |
| 268 | func (c Context) Ints8(key string, i []int8) Context { |
nothing calls this directly
no test coverage detected