Changeset 12336 in josm for trunk


Ignore:
Timestamp:
2017-06-08T00:08:49+02:00 (7 years ago)
Author:
michael2402
Message:

Add trace logging if plugin class is not found in dependency class loader.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/plugins/PluginClassLoader.java

    r12323 r12336  
    66import java.util.ArrayList;
    77import java.util.Collection;
     8
     9import org.openstreetmap.josm.tools.Logging;
    810
    911/**
     
    5254            } catch (ClassNotFoundException e) {
    5355                // do nothing
     56                Logging.trace("Plugin class not found in {0}: {1}", dep, e.getMessage());
    5457            }
    5558        }
Note: See TracChangeset for help on using the changeset viewer.