summaryrefslogtreecommitdiffstats
path: root/base/server/cmscore
diff options
context:
space:
mode:
authorMatthew Harmsen <mharmsen@redhat.com>2014-06-24 17:42:48 -0700
committerMatthew Harmsen <mharmsen@redhat.com>2014-06-25 13:57:57 -0700
commit532137ef51d0a4b422b6b9c73f9449e0f9dce6ee (patch)
treeff586a2c074ca237f916314baf8b1b88341c32d0 /base/server/cmscore
parent33c8ea3702ae39b193c7f9f6759e3c66c9681b0e (diff)
downloadpki-532137ef51d0a4b422b6b9c73f9449e0f9dce6ee.tar.gz
pki-532137ef51d0a4b422b6b9c73f9449e0f9dce6ee.tar.xz
pki-532137ef51d0a4b422b6b9c73f9449e0f9dce6ee.zip
Swap numeric values of OBNOXIOUS and INFO debug logging for correctness
* PKI TRAC Ticket #898 - Giant /var/log/pki-ca/debug
Diffstat (limited to 'base/server/cmscore')
-rw-r--r--base/server/cmscore/src/com/netscape/cmscore/util/Debug.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/base/server/cmscore/src/com/netscape/cmscore/util/Debug.java b/base/server/cmscore/src/com/netscape/cmscore/util/Debug.java
index bd10a493c..036573467 100644
--- a/base/server/cmscore/src/com/netscape/cmscore/util/Debug.java
+++ b/base/server/cmscore/src/com/netscape/cmscore/util/Debug.java
@@ -52,9 +52,9 @@ public class Debug
}
public static final boolean ON = false;
- public static final int OBNOXIOUS = 10;
+ public static final int OBNOXIOUS = 1;
public static final int VERBOSE = 5;
- public static final int INFORM = 1;
+ public static final int INFORM = 10;
// the difference between this and 'ON' is that this is always
// guaranteed to log to 'mOut', whereas other parts of the server
@@ -261,9 +261,9 @@ public class Debug
* Set the current debugging level. You can use:
*
* <pre>
- * OBNOXIOUS = 10
+ * OBNOXIOUS = 1
* VERBOSE = 5
- * INFORM = 1
+ * INFORM = 10
* </pre>
*
* Or another value