| 91 | } |
| 92 | |
| 93 | type user struct { |
| 94 | Name string `json:"name"` |
| 95 | Email string `json:"email"` |
| 96 | CreatedAt time.Time `json:"created_at"` |
| 97 | } |
| 98 | |
| 99 | func (u *user) MarshalLogObject(enc zapcore.ObjectEncoder) error { |
| 100 | enc.AddString("name", u.Name) |
nothing calls this directly
no outgoing calls
no test coverage detected