Changeset 12621 in josm


Ignore:
Timestamp:
2017-08-22T22:49:13+02:00 (7 years ago)
Author:
Don-vip
Message:

see #15182 - do not print stacktrace by default for debug/trace levels, as before

File:
1 edited

Legend:

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

    r12620 r12621  
    199199     */
    200200    public static void debug(Throwable t) {
    201         logWithStackTrace(Logging.LEVEL_DEBUG, t);
     201        log(Logging.LEVEL_DEBUG, t);
    202202    }
    203203
     
    226226     */
    227227    public static void trace(Throwable t) {
    228         logWithStackTrace(Logging.LEVEL_TRACE, t);
     228        log(Logging.LEVEL_TRACE, t);
    229229    }
    230230
Note: See TracChangeset for help on using the changeset viewer.