Changeset 12621 in josm for trunk/src/org
- Timestamp:
- 2017-08-22T22:49:13+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/Logging.java
r12620 r12621 199 199 */ 200 200 public static void debug(Throwable t) { 201 log WithStackTrace(Logging.LEVEL_DEBUG, t);201 log(Logging.LEVEL_DEBUG, t); 202 202 } 203 203 … … 226 226 */ 227 227 public static void trace(Throwable t) { 228 log WithStackTrace(Logging.LEVEL_TRACE, t);228 log(Logging.LEVEL_TRACE, t); 229 229 } 230 230
Note:
See TracChangeset
for help on using the changeset viewer.