| 74 | } |
| 75 | |
| 76 | type logObjectMarshalerImpl struct { |
| 77 | name string |
| 78 | age int |
| 79 | } |
| 80 | |
| 81 | func (t logObjectMarshalerImpl) MarshalZerologObject(e *Event) { |
| 82 | e.Str("name", strings.ToLower(t.name)).Int("age", -t.age) |
nothing calls this directly
no outgoing calls
no test coverage detected