Changeset 16987 in josm


Ignore:
Timestamp:
2020-08-30T22:37:31+02:00 (4 years ago)
Author:
simon04
Message:

Logging: classify "Switching map mode from X to Y" as debug

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/MapFrame.java

    r16528 r16987  
    490490            newMapMode = null;
    491491        }
    492         Logging.info("Switching map mode from {0} to {1}",
     492        Logging.debug("Switching map mode from {0} to {1}",
    493493                Optional.ofNullable(oldMapMode).map(m -> m.getClass().getSimpleName()).orElse("(none)"),
    494494                Optional.ofNullable(newMapMode).map(m -> m.getClass().getSimpleName()).orElse("(none)"));
Note: See TracChangeset for help on using the changeset viewer.