Changeset 10626 in josm for trunk/src/org/openstreetmap/josm/tools
- Timestamp:
- 2016-07-24T13:54:44+02:00 (8 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/tools
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/ExceptionUtil.java
r10616 r10626 476 476 } catch (MalformedURLException ex) { 477 477 // shouldn't happen 478 if (Main.isTraceEnabled()) { 479 Main.trace(e.getMessage()); 480 } 478 Main.trace(ex); 481 479 } 482 480 … … 625 623 } catch (MalformedURLException ex) { 626 624 // shouldn't happen 627 if (Main.isTraceEnabled()) { 628 Main.trace(e.getMessage()); 629 } 625 Main.trace(e); 630 626 } 631 627 -
trunk/src/org/openstreetmap/josm/tools/I18n.java
r10625 r10626 486 486 } catch (IOException e) { 487 487 // Ignore 488 if (Main.isTraceEnabled()) { 489 Main.trace(e.getMessage()); 490 } 488 Main.trace(e); 491 489 } 492 490 } … … 518 516 } catch (IOException e) { 519 517 // Ignore exception 520 if (Main.isTraceEnabled()) { 521 Main.trace(e.getMessage()); 522 } 518 Main.trace(e); 523 519 } 524 520 return false; -
trunk/src/org/openstreetmap/josm/tools/PlatformHookUnixoid.java
r10616 r10626 403 403 } catch (IOException e) { 404 404 // Ignore 405 if (Main.isTraceEnabled()) { 406 Main.trace(e.getMessage()); 407 } 405 Main.trace(e); 408 406 } 409 407 } -
trunk/src/org/openstreetmap/josm/tools/PlatformHookWindows.java
r10580 r10626 242 242 // If exception this is not a certificate related to JOSM, just trace it 243 243 Main.trace(alias + " --> " + e.getClass().getName()); 244 Main.trace(e); 244 245 } 245 246 }
Note:
See TracChangeset
for help on using the changeset viewer.