We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20ff1b9 commit f87b1f4Copy full SHA for f87b1f4
1 file changed
src/sync.d
@@ -2541,8 +2541,12 @@ class SyncEngine {
2541
if ((isItemFile(onedriveJSONItem)) && (appConfig.getValueBool("sync_root_files")) && (rootName(newItemPath) == "") ) {
2542
// This is a file
2543
// We are configured to sync all files in the root
2544
- // This is a file in the logical root
+ // This is a file in the logical configured root
2545
unwanted = false;
2546
+ // Log that we are retaining this file and why
2547
+ if (verboseLogging) {
2548
+ addLogEntry("Path retained due to 'sync_root_files' override for logical root file: " ~ newItemPath, ["verbose"]);
2549
+ }
2550
} else {
2551
// path is unwanted - excluded by 'sync_list'
2552
unwanted = true;
0 commit comments