diff --git a/src/sync.d b/src/sync.d index c4f4bf5b..cf83e76b 100644 --- a/src/sync.d +++ b/src/sync.d @@ -523,7 +523,9 @@ final class SyncEngine // check if the item is going to be deleted if (isItemDeleted(driveItem)) { - log.vlog("This item is marked for deletion:", item.name); + // item.name is not available, so we get a bunch of meaningless log output + // will fix this with wider logging changes being worked on + //log.vlog("This item is marked for deletion:", item.name); if (cached) { // flag to delete idsToDelete ~= [item.driveId, item.id];