(i, n int, path string, byteCount int, err error)
| 180 | } |
| 181 | |
| 182 | func (par2LogDecoderDelegate) OnDataFileWrite(i, n int, path string, byteCount int, err error) { |
| 183 | if err != nil { |
| 184 | fmt.Printf("[%d/%d] Writing data file %q failed: %+v\n", i, n, path, err) |
| 185 | } else { |
| 186 | fmt.Printf("[%d/%d] Wrote data file %q (%d bytes)\n", i, n, path, byteCount) |
| 187 | } |
| 188 | } |
| 189 | |
| 190 | type par2LogVerifyDelegate struct { |
| 191 | par2LogDecoderDelegate |
nothing calls this directly
no outgoing calls
no test coverage detected