Correct j.u.l log levels in JULI docs.
authorrjung <rjung@13f79535-47bb-0310-9956-ffa450edef68>
Sun, 15 Jul 2007 17:02:56 +0000 (17:02 +0000)
committerrjung <rjung@13f79535-47bb-0310-9956-ffa450edef68>
Sun, 15 Jul 2007 17:02:56 +0000 (17:02 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk@556430 13f79535-47bb-0310-9956-ffa450edef68

webapps/docs/changelog.xml
webapps/docs/logging.xml

index a611f2e..51e159a 100644 (file)
 
 <body>
 <section name="Tomcat 6.0.14 (remm)">
+  <subsection name="General">
+    <changelog>
+      <docs>
+        Correct j.u.l log levels in JULI docs. (rjung)
+      </docs>
+    </changelog>
+  </subsection>
   <subsection name="Catalina">
     <changelog>
       <fix>
index 948bf7f..e13cb8e 100644 (file)
   </p>
   <p>
     The default logging.properties specifies a ConsoleHandler for routing logging to stdout and
-    also a FileHandler. A handler's log level threshold can be set using SEVERE, CONFIG, INFO, 
-    WARN, FINE, FINEST or ALL. The logging.properties shipped with JDK is set to INFO. You
+    also a FileHandler. A handler's log level threshold can be set using SEVERE, WARNING, INFO,
+    CONFIG, FINE, FINER, FINEST or ALL. The logging.properties shipped with JDK is set to INFO. You
     can also target specific packages to collect logging from and specify a level. Here is how
     you would set debugging from Tomcat. You would need to ensure the ConsoleHandler's level is also
     set to collect this threshold, so FINEST or ALL should be set. Please refer to Sun's java.util.logging