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

Remove extra newline in the PRUNE_NEWSNAPSHOT log message

This commit is contained in:
Gilbert Chen
2018-07-26 21:24:33 -04:00
parent fce4234861
commit 8ae7d2a97d

View File

@@ -1760,7 +1760,7 @@ func (manager *SnapshotManager) PruneSnapshots(selfID string, snapshotID string,
for _, newSnapshot := range newSnapshots {
fmt.Fprintf(logFile, "Snapshot %s revision %d was created after collection %s\n", newSnapshot.ID, newSnapshot.Revision, collectionName)
LOG_INFO("PRUNE_NEWSNAPSHOT", "Snapshot %s revision %d was created after collection %s\n", newSnapshot.ID, newSnapshot.Revision, collectionName)
LOG_INFO("PRUNE_NEWSNAPSHOT", "Snapshot %s revision %d was created after collection %s", newSnapshot.ID, newSnapshot.Revision, collectionName)
for _, chunk := range manager.GetSnapshotChunks(newSnapshot, false) {
newChunks[chunk] = true
}