Browse Source

Remove overly spammy logging

Jaime van Kessel 4 years ago
parent
commit
fd2a7689cc
2 changed files with 0 additions and 4 deletions
  1. 0 3
      cura/API/Account.py
  2. 0 1
      plugins/Toolbox/src/CloudSync/CloudPackageChecker.py

+ 0 - 3
cura/API/Account.py

@@ -112,9 +112,6 @@ class Account(QObject):
         :param service_name: A unique name for your service, such as `plugins` or `backups`
         :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

+ 0 - 1
plugins/Toolbox/src/CloudSync/CloudPackageChecker.py

@@ -62,7 +62,6 @@ class CloudPackageChecker(QObject):
 
     def _getUserSubscribedPackages(self) -> None:
         self._application.getCuraAPI().account.setSyncState(self.SYNC_SERVICE_NAME, SyncState.SYNCING)
-        Logger.debug("Requesting subscribed packages metadata from server.")
         url = CloudApiModel.api_url_user_packages
         self._application.getHttpRequestManager().get(url,
                                                       callback = self._onUserPackagesRequestFinished,