()
| 272 | } |
| 273 | |
| 274 | func (m *Metric) String() string { |
| 275 | var sb strings.Builder |
| 276 | m.debugString(&sb, "") |
| 277 | return sb.String() |
| 278 | } |
| 279 | |
| 280 | // debugString writes debug information to the given string builder with the |
| 281 | // given prefix. |
nothing calls this directly
no test coverage detected