Author: toad
Date: 2007-03-05 21:26:59 +0000 (Mon, 05 Mar 2007)
New Revision: 11983
Modified:
trunk/freenet/src/freenet/support/Logger.java
trunk/freenet/src/freenet/support/LoggerHook.java
Log:
DEBUGGING -> DEBUG
Modified: trunk/freenet/src/freenet/support/Logger.java
===================================================================
--- trunk/freenet/src/freenet/support/Logger.java 2007-03-05 21:05:39 UTC
(rev 11982)
+++ trunk/freenet/src/freenet/support/Logger.java 2007-03-05 21:26:59 UTC
(rev 11983)
@@ -112,7 +112,7 @@
* Logs this exception with the message.
* @param priority
* The priority of the mesage, one of Logger.ERROR,
- * Logger.NORMAL, Logger.MINOR, or Logger.DEBUGGING.
+ * Logger.NORMAL, Logger.MINOR, or Logger.DEBUG.
*/
public abstract void log(
Object o,
@@ -126,7 +126,7 @@
* @param source The source object where this message was
generated
* @param message A clear and verbose message describing the event
* @param priority The priority of the mesage, one of Logger.ERROR,
- * Logger.NORMAL, Logger.MINOR, or Logger.DEBUGGING.
+ * Logger.NORMAL, Logger.MINOR, or Logger.DEBUG.
**/
public abstract void log(Object source, String message, int priority);
@@ -136,7 +136,7 @@
* @param message A clear and verbose message describing the event.
* @param e Logs this exception with the message.
* @param priority The priority of the mesage, one of Logger.ERROR,
- * Logger.NORMAL, Logger.MINOR, or Logger.DEBUGGING.
+ * Logger.NORMAL, Logger.MINOR, or Logger.DEBUG.
* @see #log(Object o, String message, int priority)
*/
public abstract void log(Object o, String message, Throwable e,
@@ -146,7 +146,7 @@
* @param c The class where this message was generated.
* @param message A clear and verbose message describing the event
* @param priority The priority of the mesage, one of Logger.ERROR,
- * Logger.NORMAL, Logger.MINOR, or Logger.DEBUGGING.
+ * Logger.NORMAL, Logger.MINOR, or Logger.DEBUG.
*/
public abstract void log(Class c, String message, int priority);
@@ -156,7 +156,7 @@
* @param message A clear and verbose message describing the event
* @param e Logs this exception with the message.
* @param priority The priority of the mesage, one of Logger.ERROR,
- * Logger.NORMAL, Logger.MINOR, or Logger.DEBUGGING.
+ * Logger.NORMAL, Logger.MINOR, or Logger.DEBUG.
*/
public abstract void log(Class c, String message, Throwable e,
int priority);
Modified: trunk/freenet/src/freenet/support/LoggerHook.java
===================================================================
--- trunk/freenet/src/freenet/support/LoggerHook.java 2007-03-05 21:05:39 UTC
(rev 11982)
+++ trunk/freenet/src/freenet/support/LoggerHook.java 2007-03-05 21:26:59 UTC
(rev 11983)
@@ -39,7 +39,7 @@
* Logs this exception with the message.
* @param priority
* The priority of the mesage, one of Logger.ERROR,
- * Logger.NORMAL, Logger.MINOR, or Logger.DEBUGGING.
+ * Logger.NORMAL, Logger.MINOR, or Logger.DEBUG.
*/
public abstract void log(
Object o,
@@ -53,7 +53,7 @@
* @param source The source object where this message was
generated
* @param message A clear and verbose message describing the event
* @param priority The priority of the mesage, one of Logger.ERROR,
- * Logger.NORMAL, Logger.MINOR, or Logger.DEBUGGING.
+ * Logger.NORMAL, Logger.MINOR, or Logger.DEBUG.
**/
public void log(Object source, String message, int priority) {
if (!instanceShouldLog(priority,source)) return;
@@ -67,7 +67,7 @@
* @param message A clear and verbose message describing the event.
* @param e Logs this exception with the message.
* @param priority The priority of the mesage, one of Logger.ERROR,
- * Logger.NORMAL, Logger.MINOR, or Logger.DEBUGGING.
+ * Logger.NORMAL, Logger.MINOR, or Logger.DEBUG.
* @see #log(Object o, String message, int priority)
*/
public void log(Object o, String message, Throwable e,
@@ -81,7 +81,7 @@
* @param c The class where this message was generated.
* @param message A clear and verbose message describing the event
* @param priority The priority of the mesage, one of Logger.ERROR,
- * Logger.NORMAL, Logger.MINOR, or Logger.DEBUGGING.
+ * Logger.NORMAL, Logger.MINOR, or Logger.DEBUG.
*/
public void log(Class c, String message, int priority) {
if (!instanceShouldLog(priority,c)) return;