From 7cce2f770d332db1802ab252553b8ed85b283dd0 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Tue, 27 Jul 2021 16:13:50 +0200 Subject: [PATCH] Change warning logging to debug Since it's triggered every boot of Cura, it makes no sense to leave it a warning... --- cura/API/Account.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/API/Account.py b/cura/API/Account.py index 2e48a040ad..884c2885e4 100644 --- a/cura/API/Account.py +++ b/cura/API/Account.py @@ -209,7 +209,7 @@ class Account(QObject): if self._update_timer.isActive(): self._update_timer.stop() elif self._sync_state == SyncState.SYNCING: - Logger.warning("Starting a new sync while previous sync was not completed\n{}", str(self._sync_services)) + Logger.debug("Starting a new sync while previous sync was not completed") self.syncRequested.emit()