(i, n int, path string, byteCount int, err error)
| 67 | } |
| 68 | |
| 69 | func (par1LogDecoderDelegate) OnDataFileWrite(i, n int, path string, byteCount int, err error) { |
| 70 | if err != nil { |
| 71 | fmt.Printf("[%d/%d] Writing data file %q failed: %+v\n", i, n, path, err) |
| 72 | } else { |
| 73 | fmt.Printf("[%d/%d] Wrote data file %q (%d bytes)\n", i, n, path, byteCount) |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | func (par1LogDecoderDelegate) OnVolumeFileLoad(i uint64, path string, storedSetHash, computedSetHash [16]byte, dataByteCount int, err error) { |
| 78 | if os.IsNotExist(err) { |
nothing calls this directly
no outgoing calls
no test coverage detected