chiark / gitweb /
Rename slice engine log file into engine.log instead of debug.log
authorYouness Alaoui <kakaroto@kakaroto.homelinux.net>
Fri, 9 Jan 2015 20:13:05 +0000 (15:13 -0500)
committerYouness Alaoui <kakaroto@kakaroto.homelinux.net>
Fri, 9 Jan 2015 20:13:05 +0000 (15:13 -0500)
Cura/util/sliceEngine.py

index df623112320bb41de4c5ecab1a1e29ed87e7dca9..66e10a11661f2ef71f616ded5bfc92e8c933b4bd 100644 (file)
@@ -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: