From 94f094380b1e9cb35ae50ef9689559746de6acfc Mon Sep 17 00:00:00 2001 From: Nino van Hooff Date: Fri, 15 May 2020 11:59:22 +0200 Subject: [PATCH] Log sync state transitions CURA-7290 --- cura/API/Account.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cura/API/Account.py b/cura/API/Account.py index 2bfbf41f53..4df5765f58 100644 --- a/cura/API/Account.py +++ b/cura/API/Account.py @@ -108,6 +108,8 @@ class Account(QObject): :param state: One of SyncState """ + Logger.info("Service {service} enters sync state {state}", service = service_name, state = state) + prev_state = self._sync_state self._sync_services[service_name] = state