﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
13850	[Patch] Exceptions handled via BugReport are no longer written to the console	simon04	michael2402	"For instance, the exception from #13828 is handled via the BugReport queue, but is not written to the console. This prevents from easily inspecting the stack trace when running JOSM from an IDE.

What about the fix:
{{{#!patch
diff --git a/src/org/openstreetmap/josm/tools/bugreport/BugReportExceptionHandler.java b/src/org/openstreetmap/josm/tools/bugreport/BugReportExceptionHandler.java
index 1decdd1..538a2cc 100644
--- a/src/org/openstreetmap/josm/tools/bugreport/BugReportExceptionHandler.java
+++ b/src/org/openstreetmap/josm/tools/bugreport/BugReportExceptionHandler.java
@@ -1,6 +1,8 @@
 // License: GPL. For details, see LICENSE file.
 package org.openstreetmap.josm.tools.bugreport;
 
+import org.openstreetmap.josm.Main;
+
 /**
  * An exception handler that asks the user to send a bug report.
  *
@@ -19,6 +21,7 @@ public void uncaughtException(Thread t, Throwable e) {
      * @param e the exception
      */
     public static synchronized void handleException(final Throwable e) {
+        Main.error(e);
         BugReport.intercept(e).warn();
     }
 
}}}"	defect	closed	minor	16.10	Core		fixed		
