1
0
mirror of https://github.com/gilbertchen/duplicacy synced 2025-12-06 00:03:38 +00:00

Merge pull request #173 from jt70471/patch-2

change message when chunk is skipped at destination for copy
This commit is contained in:
gilbertchen
2017-09-11 10:19:55 -04:00
committed by GitHub

View File

@@ -1677,7 +1677,7 @@ func (manager *BackupManager) CopySnapshots(otherManager *BackupManager, snapsho
chunkUploader.StartChunk(newChunk, chunkIndex) chunkUploader.StartChunk(newChunk, chunkIndex)
totalCopied++ totalCopied++
} else { } else {
LOG_INFO("SNAPSHOT_COPY", "Chunk %s (%d/%d) exists at the destination.", chunkID, chunkIndex, len(chunks)) LOG_INFO("SNAPSHOT_COPY", "Chunk %s (%d/%d) skipped at the destination", chunkID, chunkIndex, len(chunks))
totalSkipped++ totalSkipped++
} }
} }