debugString writes debug information to the given string builder with the given prefix.
(sb *strings.Builder, prefix string)
| 261 | // debugString writes debug information to the given string builder with the |
| 262 | // given prefix. |
| 263 | func (c *Condition) debugString(sb *strings.Builder, prefix string) { |
| 264 | writeLine(sb, prefix, "Condition: %s = %s", c.Name, c.Value) |
| 265 | } |
| 266 | |
| 267 | // Metric holds the actual metric data and unit information for this benchmark. |
| 268 | type Metric struct { |