Revision 47408

View differences:

trunk/org.gvsig.desktop/org.gvsig.desktop.framework/org.gvsig.andami/src/main/java/org/gvsig/andami/plugins/PluginClassLoader.java
208 208
            throws ClassNotFoundException {
209 209
        Class<?> c = null;
210 210

  
211
        if(StringUtils.equals(name, "java/nio/file/SimpleFileVisitor")){
212
            logger.info("Loading SimpleFileVisitor: isOtherLoader = "+isOtherLoader+" PluginName = "+this.getPluginName());
213
        }
211 214
        // Intentamos cargar con el URLClassLoader
212 215
        for( int retry=0; c==null && retry<3; retry++) {
213 216
            try {
......
216 219
                    logger.debug("Classloader {}, found class {}.", this.getPluginName(), name);
217 220
                }
218 221
            } catch (ClassNotFoundException e1) {
222
                if(StringUtils.equals(name, "java/nio/file/SimpleFileVisitor")){
223
                    logger.info("ClassNotFoundException SimpleFileVisitor in classLoader = "+super.getClass().getName(),e1);
224
                }
219 225
            }
220 226
            if (c == null) {
221 227
                try {

Also available in: Unified diff