Revision 1119

View differences:

trunk/frameworks/_fwAndami/src/com/iver/andami/Launcher.java
701 701
						File.separator + pluginName + File.separator + jardir);
702 702
				File[] jarFiles = jarDir.listFiles(new FileFilter() {
703 703
					public boolean accept(File pathname) {
704
						return pathname.getName().toUpperCase().endsWith(".JAR");
704
						return (pathname.getName().toUpperCase().endsWith(".JAR")) ||
705
						(pathname.getName().toUpperCase().endsWith(".ZIP"));
705 706
					}
706 707
				});
707 708
				
trunk/frameworks/_fwAndami/src/com/iver/andami/PluginServices.java
195 195
		}
196 196
    	catch(RuntimeException e)
197 197
		{
198
    		logger.error("GetText: Clave = " + key + ". " + e);
198
    		logger.error("GetText: Clave = " + key + ". ", e);
199 199
    		return key;    		
200 200
		}
201 201
    }

Also available in: Unified diff