Ignore:
Timestamp:
2016-07-24T13:54:44+02:00 (8 years ago)
Author:
Don-vip
Message:

simplify handling of ignored/traced exceptions

Location:
trunk/src/org/openstreetmap/josm/tools
Files:
4 edited

Legend:

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

    r10616 r10626  
    476476        } catch (MalformedURLException ex) {
    477477            // shouldn't happen
    478             if (Main.isTraceEnabled()) {
    479                 Main.trace(e.getMessage());
    480             }
     478            Main.trace(ex);
    481479        }
    482480
     
    625623        } catch (MalformedURLException ex) {
    626624            // shouldn't happen
    627             if (Main.isTraceEnabled()) {
    628                 Main.trace(e.getMessage());
    629             }
     625            Main.trace(e);
    630626        }
    631627
  • trunk/src/org/openstreetmap/josm/tools/I18n.java

    r10625 r10626  
    486486        } catch (IOException e) {
    487487            // Ignore
    488             if (Main.isTraceEnabled()) {
    489                 Main.trace(e.getMessage());
    490             }
     488            Main.trace(e);
    491489        }
    492490    }
     
    518516        } catch (IOException e) {
    519517            // Ignore exception
    520             if (Main.isTraceEnabled()) {
    521                 Main.trace(e.getMessage());
    522             }
     518            Main.trace(e);
    523519        }
    524520        return false;
  • trunk/src/org/openstreetmap/josm/tools/PlatformHookUnixoid.java

    r10616 r10626  
    403403                    } catch (IOException e) {
    404404                        // Ignore
    405                         if (Main.isTraceEnabled()) {
    406                             Main.trace(e.getMessage());
    407                         }
     405                        Main.trace(e);
    408406                    }
    409407                }
  • trunk/src/org/openstreetmap/josm/tools/PlatformHookWindows.java

    r10580 r10626  
    242242                    // If exception this is not a certificate related to JOSM, just trace it
    243243                    Main.trace(alias + " --> " + e.getClass().getName());
     244                    Main.trace(e);
    244245                }
    245246            }
Note: See TracChangeset for help on using the changeset viewer.