Error implements the error interface.
()
| 57 | |
| 58 | // Error implements the error interface. |
| 59 | func (e *Error) Error() string { |
| 60 | if e == nil { |
| 61 | return "" |
| 62 | } |
| 63 | return e.String() |
| 64 | } |
| 65 | |
| 66 | // Fields implements the log.Fielder interface. |
| 67 | func (e *Error) Fields() map[string]any { |