From 06026c2c5b4f3fb503e9988fef45d7548cc53279 Mon Sep 17 00:00:00 2001 From: abraunegg Date: Tue, 9 Jan 2024 06:46:59 +1100 Subject: [PATCH] Update sync.d * Add missing log output for new file adds --- src/sync.d | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/sync.d b/src/sync.d index 83a23314..05c9a5a8 100644 --- a/src/sync.d +++ b/src/sync.d @@ -4194,6 +4194,8 @@ class SyncEngine { // Was the file found in the database? if (!fileFoundInDB) { // This is a new file as it is not in the database + // Log that the file has been added locally + addLogEntry("[M] New local file added: " ~ localFilePath, ["verbose"]); // Scan the parent path for any new data, not just this this item scanLocalFilesystemPathForNewData(dirName(localFilePath)); } else {