diff --git a/NetworkPrinterOutputDevice.py b/NetworkPrinterOutputDevice.py index cc46c2a3a5..2ec9e1bd92 100644 --- a/NetworkPrinterOutputDevice.py +++ b/NetworkPrinterOutputDevice.py @@ -232,10 +232,10 @@ class NetworkPrinterOutputDevice(PrinterOutputDevice): self._authentication_requested_message.hide() if self._authentication_request_active: if self._authentication_timer.remainingTime() > 0: - Logger.logException("d", "Authentication state changed to authentication denied before the request timeout.") + Logger.log("d", "Authentication state changed to authentication denied before the request timeout.") self._authentication_failed_message.setText(i18n_catalog.i18nc("@info:status", "Access request was denied on the printer.")) else: - Logger.logException("d", "Authentication state changed to authentication denied due to a timeout") + Logger.log("d", "Authentication state changed to authentication denied due to a timeout") self._authentication_failed_message.setText(i18n_catalog.i18nc("@info:status", "Access request failed due to a timeout.")) self._authentication_failed_message.show()