Changeset 10420 in josm for trunk/src/org/openstreetmap/josm/tools
- Timestamp:
- 2016-06-18T19:54:45+02:00 (8 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/HttpClient.java
r10302 r10420 262 262 in = connection.getInputStream(); 263 263 } catch (IOException ioe) { 264 Main.debug(ioe); 264 265 in = connection.getErrorStream(); 265 266 } -
trunk/src/org/openstreetmap/josm/tools/bugreport/BugReportExceptionHandler.java
r10285 r10420 103 103 } 104 104 } catch (IOException | NumberFormatException ex) { 105 Main.warn( "Unable to detect latest version of JOSM: "+ex.getMessage());105 Main.warn(ex, "Unable to detect latest version of JOSM:"); 106 106 } 107 107 } … … 137 137 Main.platform.openUrl(Main.getJOSMWebsite()); 138 138 } catch (IOException ex) { 139 Main.warn( "Unable to access JOSM website: "+ex.getMessage());139 Main.warn(ex, "Unable to access JOSM website:"); 140 140 } 141 141 } else {
Note:
See TracChangeset
for help on using the changeset viewer.