appendValue appends an attribute value to the buffer, applying quoting.
(val slog.Value)
| 112 | |
| 113 | // appendValue appends an attribute value to the buffer, applying quoting. |
| 114 | func (s *formatterStructured) appendValue(val slog.Value) { |
| 115 | s.formatterCommon.appendValue(val, true) |
| 116 | } |
| 117 | |
| 118 | // appendGroup appends a group of attributes to the buffer. |
| 119 | func (s *formatterStructured) appendGroup(name string, attrs []slog.Attr) { |
no outgoing calls
no test coverage detected