From 1de80241936bc00c23cd33b09792d5f3b90eb710 Mon Sep 17 00:00:00 2001 From: Arjen Hiemstra Date: Thu, 8 Dec 2016 15:32:41 +0100 Subject: [PATCH] Re-enable Debug mode by default As discussed a while ago, we want to re-enable the crash dialog whenever an uncaught exception occurs. --- cura/CrashHandler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):