| 33 | ) |
| 34 | |
| 35 | type user struct { |
| 36 | Name string |
| 37 | Email string |
| 38 | CreatedAt time.Time |
| 39 | } |
| 40 | |
| 41 | func (u *user) MarshalLogObject(enc zapcore.ObjectEncoder) error { |
| 42 | enc.AddString("name", u.Name) |
nothing calls this directly
no outgoing calls
no test coverage detected