Change warning logging to debug

Since it's triggered every boot of Cura, it makes no sense to leave it
a warning...
This commit is contained in:
Jaime van Kessel 2021-07-27 16:13:50 +02:00
parent 11a32d13e7
commit 7cce2f770d
No known key found for this signature in database
GPG key ID: 3710727397403C91

View file

@ -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()