(s fmt.State, verb rune)
| 116 | } |
| 117 | |
| 118 | func (e *errTrace) Format(s fmt.State, verb rune) { |
| 119 | if verb == 'v' && s.Flag('+') { |
| 120 | _ = Format(s, e) |
| 121 | return |
| 122 | } |
| 123 | |
| 124 | fmt.Fprintf(s, fmt.FormatString(s, verb), e.err) |
| 125 | } |
| 126 | |
| 127 | // LogValue implements the [slog.LogValuer] interface. |
| 128 | func (e *errTrace) LogValue() slog.Value { |