From 7eb11f0b44efce1cf03be04c602b5261478dc616 Mon Sep 17 00:00:00 2001 From: abraunegg Date: Thu, 12 Apr 2018 08:44:52 +1000 Subject: [PATCH] Log why we are skipping a large file for upload Log the reason why a file is not being uploaded (missed this in fec7654) --- src/sync.d | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/sync.d b/src/sync.d index ae50be9d..367997b5 100644 --- a/src/sync.d +++ b/src/sync.d @@ -927,6 +927,9 @@ final class SyncEngine log.vlog("Updating the local database with details for this file: ", path); saveItem(fileDetailsFromOneDrive); } + } else { + // Skip file - too large + log.log("Skipping uploading this new file as it exceeds the maximum allowed OneDrive size: ", path); } }