Ignore:
Timestamp:
2016-11-03T15:18:03+01:00 (8 years ago)
Author:
simon04
Message:

see #13850 - BugReportQueue output original exception to console

Make it consistent with report sent to Trac.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/bugreport/BugReportQueue.java

    r11180 r11211  
    5454     */
    5555    public synchronized void submit(ReportedException report) {
    56         Logging.logWithStackTrace(Logging.LEVEL_ERROR, "Handled by bug report queue", report);
     56        Logging.logWithStackTrace(Logging.LEVEL_ERROR, "Handled by bug report queue", report.getCause());
    5757        if (suppressAllMessages || suppressFor.stream().anyMatch(report::isSame)) {
    5858            Main.info("User requested to skip error " + report);
Note: See TracChangeset for help on using the changeset viewer.