Index: /trunk/src/org/openstreetmap/josm/tools/ImageProvider.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/tools/ImageProvider.java	(revision 5026)
+++ /trunk/src/org/openstreetmap/josm/tools/ImageProvider.java	(revision 5027)
@@ -214,4 +214,11 @@
      */
     public ImageIcon get() {
+        return get(true);
+    }
+    
+    /**
+     * Execute the image request.
+     */
+    public ImageIcon get(boolean warn) {
         ImageResource ir = getIfAvailableImpl();
         if (ir == null) {
@@ -220,5 +227,7 @@
                 throw new RuntimeException(tr("Fatal: failed to locate image ''{0}''. This is a serious configuration problem. JOSM will stop working.", name + ext));
             } else {
-                System.out.println(tr("Failed to locate image ''{0}''", name));
+                if (warn) {
+                    System.out.println(tr("Failed to locate image ''{0}''", name));
+                }
                 return null;
             }
