Errs adds the field key with errs as an array of serialized errors to the logger context.
(key string, errs []error)
| 201 | // Errs adds the field key with errs as an array of serialized errors to the |
| 202 | // logger context. |
| 203 | func (c Context) Errs(key string, errs []error) Context { |
| 204 | arr := c.CreateArray().Errs(errs) |
| 205 | return c.Array(key, arr) |
| 206 | } |
| 207 | |
| 208 | // Err adds the field "error" with serialized err to the logger context. |
| 209 | func (c Context) Err(err error) Context { |
nothing calls this directly
no test coverage detected