Index: trunk/src/org/openstreetmap/josm/actions/ShowStatusReportAction.java
===================================================================
--- trunk/src/org/openstreetmap/josm/actions/ShowStatusReportAction.java	(revision 3298)
+++ trunk/src/org/openstreetmap/josm/actions/ShowStatusReportAction.java	(revision 3299)
@@ -51,4 +51,6 @@
         text.append(Version.getInstance().getReleaseAttributes());
         text.append("\n");
+        text.append("Identification: " + Version.getInstance().getAgentString());
+        text.append("\n");
         text.append("Memory Usage: ");
         text.append(Runtime.getRuntime().totalMemory()/1024/1024);
@@ -62,15 +64,13 @@
         text.append("\n");
         text.append("Operating system: "+ System.getProperty("os.name"));
-        text.append("\n\n");
+        text.append("\n");
         DataSet dataset = Main.main.getCurrentDataSet();
         if (dataset != null) {
-            text.append("Dataset consistency test:\n");
             String result = DatasetConsistencyTest.runTests(dataset);
             if (result.length() == 0) {
-                text.append("No problems found\n");
+                text.append("Dataset consistency test: No problems found\n");
             } else {
-                text.append(result);
+                text.append("\nDataset consistency test:\n"+result+"\n");
             }
-            text.append("\n");
         }
         text.append("\n");
