Add # marks before things that aren't metrics to make it easier for scripts to proces...
authorlajoie <lajoie@ab3bd59b-922f-494d-bb5f-6f0a3c29deca>
Wed, 1 Jul 2009 08:12:35 +0000 (08:12 +0000)
committerlajoie <lajoie@ab3bd59b-922f-494d-bb5f-6f0a3c29deca>
Wed, 1 Jul 2009 08:12:35 +0000 (08:12 +0000)
git-svn-id: https://subversion.switch.ch/svn/shibboleth/java-idp/branches/REL_2@2856 ab3bd59b-922f-494d-bb5f-6f0a3c29deca

src/main/java/edu/internet2/middleware/shibboleth/idp/StatusServlet.java

index b757a80..e092b3d 100644 (file)
@@ -95,7 +95,7 @@ public class StatusServlet extends HttpServlet {
     protected void printOperatingEnvironmentInformation(PrintWriter out) {
         Runtime runtime = Runtime.getRuntime();
 
-        out.println("Operating Environment Information");
+        out.println("### Operating Environment Information");
         out.println("operating_system: " + System.getProperty("os.name"));
         out.println("operating_system_version: " + System.getProperty("os.version"));
         out.println("operating_system_architecture: " + System.getProperty("os.arch"));
@@ -115,7 +115,7 @@ public class StatusServlet extends HttpServlet {
     protected void printIdPInformation(PrintWriter out) {
         Package pkg = Version.class.getPackage();
 
-        out.println("Identity Provider Information");
+        out.println("### Identity Provider Information");
         out.println("idp_version: " + pkg.getImplementationVersion());
         out.println("idp_start_time: " + startTime.toString(dateFormat));
         try {
@@ -135,7 +135,7 @@ public class StatusServlet extends HttpServlet {
      * @param relyingPartyId entity ID of the relying party whose configuration should be printed
      */
     protected void printRelyingPartyConfigurationsInformation(PrintWriter out, String relyingPartyId) {
-        out.println("Relying Party Configurations");
+        out.println("### Relying Party Configurations");
 
         if (relyingPartyId == null) {
             for (RelyingPartyConfiguration config : rpConfigManager.getRelyingPartyConfigurations().values()) {