(v []byte)
| 182 | } |
| 183 | |
| 184 | func (d *debugWriter) WriteBytes(v []byte) error { |
| 185 | err := d.w.WriteBytes(v) |
| 186 | d.log("WriteBytes", v, err) |
| 187 | return err |
| 188 | } |
| 189 | |
| 190 | func (d *debugWriter) WriteString(v string) error { |
| 191 | err := d.w.WriteString(v) |
nothing calls this directly
no test coverage detected