From 316c7eb5d2d30c2c2ad26c938dec276cff12da89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anders=20=C3=85berg?= Date: Thu, 27 Feb 2025 20:24:51 +0100 Subject: [PATCH] Use .error to log errors --- .../CredentialProviderViewController.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/desktop/macos/autofill-extension/CredentialProviderViewController.swift b/apps/desktop/macos/autofill-extension/CredentialProviderViewController.swift index ea0fde6663a..94ace6687dc 100644 --- a/apps/desktop/macos/autofill-extension/CredentialProviderViewController.swift +++ b/apps/desktop/macos/autofill-extension/CredentialProviderViewController.swift @@ -140,7 +140,7 @@ class CredentialProviderViewController: ASCredentialProviderViewController { } func onError(error: BitwardenError) { - logger.log("[autofill-extension] OnError called, cancelling the request \(error)") + logger.error("[autofill-extension] OnError called, cancelling the request \(error)") self.timeoutTimer.cancel() ctx.cancelRequest(withError: error) } @@ -237,7 +237,7 @@ class CredentialProviderViewController: ASCredentialProviderViewController { } func onError(error: BitwardenError) { - logger.log("[autofill-extension] OnError called, cancelling the request \(error)") + logger.error("[autofill-extension] OnError called, cancelling the request \(error)") self.timeoutTimer.cancel() ctx.cancelRequest(withError: error) } @@ -302,7 +302,7 @@ class CredentialProviderViewController: ASCredentialProviderViewController { } func onError(error: BitwardenError) { - logger.log("[autofill-extension] OnError called, cancelling the request \(error)") + logger.error("[autofill-extension] OnError called, cancelling the request \(error)") self.timeoutTimer.cancel() ctx.cancelRequest(withError: error) }