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

see #15182 - deprecate all Main logging methods and introduce suitable replacements in Logging for most of them

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetCacheManager.java

    r12495 r12620  
    6565import org.openstreetmap.josm.tools.ImageProvider;
    6666import org.openstreetmap.josm.tools.InputMapUtils;
     67import org.openstreetmap.josm.tools.Logging;
    6768import org.openstreetmap.josm.tools.StreamUtils;
    6869import org.openstreetmap.josm.tools.WindowGeometry;
     
    404405                    }
    405406                } catch (IllegalStateException e) {
    406                     Main.error(e);
     407                    Logging.error(e);
    407408                    JOptionPane.showMessageDialog(parent, e.getMessage(), tr("Error"), JOptionPane.ERROR_MESSAGE);
    408409                }
     
    642643            } catch (IllegalStateException ex) {
    643644                alertAnonymousUser(parent);
    644                 Main.trace(ex);
     645                Logging.trace(ex);
    645646            }
    646647        }
Note: See TracChangeset for help on using the changeset viewer.