Index: /applications/editors/josm/plugins/opendata/util/opendata/ModuleListGenerator.java
===================================================================
--- /applications/editors/josm/plugins/opendata/util/opendata/ModuleListGenerator.java	(revision 30909)
+++ /applications/editors/josm/plugins/opendata/util/opendata/ModuleListGenerator.java	(revision 30910)
@@ -14,6 +14,4 @@
 import java.util.zip.ZipEntry;
 import java.util.zip.ZipOutputStream;
-
-import org.openstreetmap.josm.Main;
 
 public class ModuleListGenerator {
@@ -40,5 +38,5 @@
 				try {
 					String filename = file.getName();
-					Main.info("Processing "+filename);
+					System.out.println("Processing "+filename);
 					list.write(filename+";"+url+filename); list.newLine();
 					Manifest mf = new JarFile(file).getManifest();
@@ -80,5 +78,5 @@
 									}
 								} catch (IOException e) {
-									Main.error("Cannot load Image-Icon: "+value.toString());
+									System.err.println("Cannot load Image-Icon: "+value.toString());
 								} finally {
 									zip.closeEntry();
@@ -87,11 +85,11 @@
 						}
 					}
-
+					
 				} catch (IOException e) {
-				    Main.error(e);
+					e.printStackTrace();
 				}
 			}
 		} catch (IOException e) {
-			Main.error(e);
+			e.printStackTrace();
 		}
 	}
