(v string)
| 188 | } |
| 189 | |
| 190 | func (d *debugWriter) WriteString(v string) error { |
| 191 | err := d.w.WriteString(v) |
| 192 | d.log("WriteString", v, err) |
| 193 | return err |
| 194 | } |
| 195 | |
| 196 | func (d *debugWriter) WriteLength(n int) error { |
| 197 | err := d.w.WriteLength(n) |
nothing calls this directly
no test coverage detected