| 190 | } |
| 191 | |
| 192 | type fakeObject struct { |
| 193 | value string |
| 194 | err error // marshaling error, if any |
| 195 | } |
| 196 | |
| 197 | func (o *fakeObject) MarshalLogObject(enc zapcore.ObjectEncoder) error { |
| 198 | enc.AddString("value", o.value) |
nothing calls this directly
no outgoing calls
no test coverage detected