- Timestamp:
- 2020-05-05T08:59:02+02:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/cache/JCSCacheManager.java
r16335 r16392 102 102 } 103 103 }); 104 } catch ( SecurityException e) {104 } catch (Exception e) { 105 105 Logging.log(Logging.LEVEL_ERROR, "Unable to configure JCS logs", e); 106 106 } … … 132 132 } 133 133 } 134 } catch ( SecurityException e) {134 } catch (Exception e) { 135 135 Logging.log(Logging.LEVEL_WARN, "Unable to configure disk cache. Will not use it", e); 136 136 } … … 153 153 try { 154 154 JCS.setConfigProperties(props); 155 } catch ( SecurityException e) {155 } catch (Exception e) { 156 156 Logging.log(Logging.LEVEL_WARN, "Unable to initialize JCS", e); 157 157 }
Note:
See TracChangeset
for help on using the changeset viewer.