Added even more logging

CURA-1133
This commit is contained in:
Jaime van Kessel 2016-03-21 15:36:07 +01:00
parent 235f324d56
commit 3ecd746f21

View file

@ -162,8 +162,8 @@ class CuraEngineBackend(Backend):
try:
self._process.terminate()
self._process = None
except: # terminating a process that is already terminating causes an exception, silently ignore this.
pass
except Exception as e: # terminating a process that is already terminating causes an exception, silently ignore this.
Logger.log("d", "Exception occured while trying to kill the engine %s", str(e))
Logger.log("d", "Engine process is killed")
def _onStartSliceCompleted(self, job):