From 03eeec55b2be75c9e3d7935cb1dd02286d4b0702 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Mon, 30 May 2016 15:04:49 -0500 Subject: [PATCH] gui: better log levels --- artiq/browser/experiments.py | 2 +- artiq/gui/applets.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/artiq/browser/experiments.py b/artiq/browser/experiments.py index 9bc0bca26..60e29e1f8 100644 --- a/artiq/browser/experiments.py +++ b/artiq/browser/experiments.py @@ -303,7 +303,7 @@ class _ExperimentDock(QtWidgets.QMdiSubWindow): expid=expid, priority=0) await worker.analyze() except: - logger.info("Failed to run '%s'", self.expurl) + logger.error("Failed to run '%s'", self.expurl) log_worker_exception() finally: await worker.close() diff --git a/artiq/gui/applets.py b/artiq/gui/applets.py index 849ae67b7..87fb91646 100644 --- a/artiq/gui/applets.py +++ b/artiq/gui/applets.py @@ -120,7 +120,7 @@ class _AppletDock(QDockWidgetCloseDetect): python=sys.executable.replace("\\", "\\\\"), ipc_address=self.ipc.get_address().replace("\\", "\\\\") ) - logger.info("starting command %s for %s", command, self.applet_name) + logger.debug("starting command %s for %s", command, self.applet_name) try: await self.ipc.create_subprocess(*shlex.split(command), start_new_session=True)