From ac4da2e2baf2ff647e1ee9bdc0114036fbcf5559 Mon Sep 17 00:00:00 2001 From: abraunegg Date: Fri, 20 Nov 2020 06:33:47 +1100 Subject: [PATCH] Update #1142 logging output handling (#1153) * Update logging output to debug rather than standard log --- src/main.d | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.d b/src/main.d index d515de19..ecc178e7 100644 --- a/src/main.d +++ b/src/main.d @@ -769,18 +769,18 @@ int main(string[] args) // Do we need to configure specific --upload-only options? if (cfg.getValueBool("upload_only")) { // --upload-only was passed in or configured - log.log("Configuring uploadOnly flag to TRUE as --upload-only passed in or configured"); + log.vdebug("Configuring uploadOnly flag to TRUE as --upload-only passed in or configured"); sync.setUploadOnly(); // was --no-remote-delete passed in or configured if (cfg.getValueBool("no_remote_delete")) { // Configure the noRemoteDelete flag - log.log("Configuring noRemoteDelete flag to TRUE as --no-remote-delete passed in or configured"); + log.vdebug("Configuring noRemoteDelete flag to TRUE as --no-remote-delete passed in or configured"); sync.setNoRemoteDelete(); } // was --remove-source-files passed in or configured if (cfg.getValueBool("remove_source_files")) { // Configure the localDeleteAfterUpload flag - log.log("Configuring localDeleteAfterUpload flag to TRUE as --remove-source-files passed in or configured"); + log.vdebug("Configuring localDeleteAfterUpload flag to TRUE as --remove-source-files passed in or configured"); sync.setLocalDeleteAfterUpload(); } }