openGroup opens a new group of attributes.
(name string)
| 133 | |
| 134 | // openGroup opens a new group of attributes. |
| 135 | func (s *formatterStructured) openGroup(name string) { |
| 136 | s.prefix.appendStringRaw(name) |
| 137 | s.prefix.append('.') |
| 138 | } |
| 139 | |
| 140 | // closeGroup closes the most recently opened group of attributes. |
| 141 | func (s *formatterStructured) closeGroup(name string) { |
no test coverage detected