()
| 37 | type DoNotLogError struct{ Err error } |
| 38 | |
| 39 | func (i DoNotLogError) Error() string { return i.Err.Error() } |
| 40 | func (i DoNotLogError) Unwrap() error { return i.Err } |
| 41 | func (i DoNotLogError) ShouldLog(_ context.Context) (bool, string) { return false, "" } |
| 42 |
no outgoing calls