(v int32)
| 164 | } |
| 165 | |
| 166 | func (d *debugWriter) WriteInt32(v int32) error { |
| 167 | err := d.w.WriteInt32(v) |
| 168 | d.log("WriteInt32", v, err) |
| 169 | return err |
| 170 | } |
| 171 | |
| 172 | func (d *debugWriter) WriteInt64(v int64) error { |
| 173 | err := d.w.WriteInt64(v) |
nothing calls this directly
no test coverage detected