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) }