From 437fe4d9e4a5c45e6fbe2df4e8c1871143191118 Mon Sep 17 00:00:00 2001 From: abraunegg Date: Thu, 22 Aug 2019 20:07:33 +1000 Subject: [PATCH] Remove double logging output for a OneDrive 412 error (#622) * Remove this logging output as it creates a double entry --- src/onedrive.d | 1 - 1 file changed, 1 deletion(-) diff --git a/src/onedrive.d b/src/onedrive.d index 5b69c8aa..d03c3a7b 100644 --- a/src/onedrive.d +++ b/src/onedrive.d @@ -791,7 +791,6 @@ final class OneDriveApi // 412 - Precondition Failed case 412: - log.vlog("OneDrive returned a 'HTTP 412 - Precondition Failed' - gracefully handling error"); // Throw this as a specific exception so this is caught when performing sync.uploadLastModifiedTime throw new OneDriveException(http.statusLine.code, http.statusLine.reason, response);