Skip to content

Commit

Permalink
gui: better log levels
Browse files Browse the repository at this point in the history
sbourdeauducq committed May 30, 2016
1 parent 55fdfc6 commit 03eeec5
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion artiq/browser/experiments.py
Original file line number Diff line number Diff line change
@@ -303,7 +303,7 @@ async def _get_run_task(self, expid):
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()
2 changes: 1 addition & 1 deletion artiq/gui/applets.py
Original file line number Diff line number Diff line change
@@ -120,7 +120,7 @@ async def start(self):
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)

0 comments on commit 03eeec5

Please sign in to comment.