From 4b88247af8383966bb5eb21b454c893cb12f232e Mon Sep 17 00:00:00 2001 From: Nino van Hooff Date: Fri, 1 May 2020 17:49:40 +0200 Subject: [PATCH] Account sync: remove debug info CURA-7290 --- cura/API/Account.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cura/API/Account.py b/cura/API/Account.py index 84bbd566cf..4703e92e2f 100644 --- a/cura/API/Account.py +++ b/cura/API/Account.py @@ -136,10 +136,9 @@ class Account(QObject): return user_profile.__dict__ def _onIsSyncingChanged(self, active: bool): - Logger.info("active: {}", active) if not active: # finished - self._last_sync_str = datetime.now().strftime("%d/%m/%Y %H:%M:%S") + self._last_sync_str = datetime.now().strftime("%d/%m/%Y %H:%M") self.lastSyncDateTimeChanged.emit() @pyqtProperty(str, notify=lastSyncDateTimeChanged)