(v float64)
| 176 | } |
| 177 | |
| 178 | func (d *debugWriter) WriteFloat64(v float64) error { |
| 179 | err := d.w.WriteFloat64(v) |
| 180 | d.log("WriteFloat64", v, err) |
| 181 | return err |
| 182 | } |
| 183 | |
| 184 | func (d *debugWriter) WriteBytes(v []byte) error { |
| 185 | err := d.w.WriteBytes(v) |
nothing calls this directly
no test coverage detected