From 0b4ba55ff34c1a504cae6b4bc6dfe6f8408d5006 Mon Sep 17 00:00:00 2001 From: Youness Alaoui Date: Fri, 9 Jan 2015 15:13:05 -0500 Subject: [PATCH] Rename slice engine log file into engine.log instead of debug.log --- Cura/util/sliceEngine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cura/util/sliceEngine.py b/Cura/util/sliceEngine.py index df623112..66e10a11 100644 --- a/Cura/util/sliceEngine.py +++ b/Cura/util/sliceEngine.py @@ -393,7 +393,7 @@ class Engine(object): logThread.join() self._result.addLog("Slicer process returned : %d" % returnCode) try: - with open(os.path.join(profile.getBasePath(), 'debug.log'), "w") as f: + with open(os.path.join(profile.getBasePath(), 'engine.log'), "w") as f: for line in self._result.getLog(): f.write(line + "\n") except: -- 2.30.2