Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArjen Hiemstra <ahiemstra@heimr.nl>2016-12-08 17:32:41 +0300
committerArjen Hiemstra <ahiemstra@heimr.nl>2016-12-08 18:15:17 +0300
commit1de80241936bc00c23cd33b09792d5f3b90eb710 (patch)
tree018566583ccbf5b167dab40e3777dfa8a00c0c0b /cura/CrashHandler.py
parentd641234a744dd55b87934faab4f6e45cf2d10bd1 (diff)
Re-enable Debug mode by default
As discussed a while ago, we want to re-enable the crash dialog whenever an uncaught exception occurs.
Diffstat (limited to 'cura/CrashHandler.py')
-rw-r--r--cura/CrashHandler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cura/CrashHandler.py b/cura/CrashHandler.py
index b40a33ae58..97966d2a5c 100644
--- a/cura/CrashHandler.py
+++ b/cura/CrashHandler.py
@@ -22,7 +22,7 @@ fatal_exception_types = [
]
def show(exception_type, value, tb):
- debug_mode = False
+ debug_mode = True
Logger.log("c", "An uncaught exception has occurred!")
for line in traceback.format_exception(exception_type, value, tb):