Index: trunk/src/org/openstreetmap/josm/actions/ShowStatusReportAction.java
===================================================================
--- trunk/src/org/openstreetmap/josm/actions/ShowStatusReportAction.java	(revision 10224)
+++ trunk/src/org/openstreetmap/josm/actions/ShowStatusReportAction.java	(revision 10226)
@@ -33,4 +33,5 @@
 import org.openstreetmap.josm.gui.preferences.map.TaggingPresetPreference;
 import org.openstreetmap.josm.gui.preferences.validator.ValidatorTagCheckerRulesPreference;
+import org.openstreetmap.josm.io.OsmApi;
 import org.openstreetmap.josm.plugins.PluginHandler;
 import org.openstreetmap.josm.tools.PlatformHookUnixoid;
@@ -161,4 +162,9 @@
         appendCollection(text, "Last errors/warnings", Main.getLastErrorAndWarnings());
 
+        String osmApi = OsmApi.getOsmApi().getServerUrl();
+        if (!OsmApi.DEFAULT_API_URL.equals(osmApi.trim())) {
+            text.append("OSM API: ").append(osmApi).append("\n\n");
+        }
+
         return text.toString();
     }
