(v int64)
| 170 | } |
| 171 | |
| 172 | func (d *debugWriter) WriteInt64(v int64) error { |
| 173 | err := d.w.WriteInt64(v) |
| 174 | d.log("WriteInt64", v, err) |
| 175 | return err |
| 176 | } |
| 177 | |
| 178 | func (d *debugWriter) WriteFloat64(v float64) error { |
| 179 | err := d.w.WriteFloat64(v) |
nothing calls this directly
no test coverage detected