Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@www.apache.org Received: (qmail 15102 invoked from network); 19 Jan 2006 22:24:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 19 Jan 2006 22:24:24 -0000 Received: (qmail 63440 invoked by uid 500); 19 Jan 2006 22:24:21 -0000 Delivered-To: apmail-jakarta-commons-dev-archive@jakarta.apache.org Received: (qmail 63363 invoked by uid 500); 19 Jan 2006 22:24:21 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 63352 invoked by uid 500); 19 Jan 2006 22:24:21 -0000 Received: (qmail 63348 invoked by uid 99); 19 Jan 2006 22:24:21 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Jan 2006 14:24:21 -0800 X-ASF-Spam-Status: No, hits=-8.6 required=10.0 tests=ALL_TRUSTED,INFO_TLD,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 19 Jan 2006 14:24:20 -0800 Received: (qmail 14881 invoked by uid 65534); 19 Jan 2006 22:23:58 -0000 Message-ID: <20060119222358.14880.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r370652 - /jakarta/commons/proper/logging/trunk/src/java/org/apache/commons/logging/impl/Jdk14Logger.java Date: Thu, 19 Jan 2006 22:23:58 -0000 To: commons-cvs@jakarta.apache.org From: rdonkin@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: rdonkin Date: Thu Jan 19 14:23:48 2006 New Revision: 370652 URL: http://svn.apache.org/viewcvs?rev=370652&view=rev Log: Javadoc improvements. Contributed by Boris Unckel. Issue #38174. Modified: jakarta/commons/proper/logging/trunk/src/java/org/apache/commons/logging/impl/Jdk14Logger.java Modified: jakarta/commons/proper/logging/trunk/src/java/org/apache/commons/logging/impl/Jdk14Logger.java URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/logging/trunk/src/java/org/apache/commons/logging/impl/Jdk14Logger.java?rev=370652&r1=370651&r2=370652&view=diff ============================================================================== --- jakarta/commons/proper/logging/trunk/src/java/org/apache/commons/logging/impl/Jdk14Logger.java (original) +++ jakarta/commons/proper/logging/trunk/src/java/org/apache/commons/logging/impl/Jdk14Logger.java Thu Jan 19 14:23:48 2006 @@ -104,7 +104,10 @@ } /** - * Log a message with debug log level. + * Logs a message with java.util.logging.Level.FINE. + * + * @param message to log + * @see org.apache.commons.logging.Log#debug(Object) */ public void debug(Object message) { log(Level.FINE, String.valueOf(message), null); @@ -112,7 +115,11 @@ /** - * Log a message and exception with debug log level. + * Logs a message with java.util.logging.Level.FINE. + * + * @param message to log + * @param exception log this cause + * @see org.apache.commons.logging.Log#debug(Object, Throwable) */ public void debug(Object message, Throwable exception) { log(Level.FINE, String.valueOf(message), exception); @@ -120,7 +127,10 @@ /** - * Log a message with error log level. + * Logs a message with java.util.logging.Level.SEVERE. + * + * @param message to log + * @see org.apache.commons.logging.Log#error(Object) */ public void error(Object message) { log(Level.SEVERE, String.valueOf(message), null); @@ -128,7 +138,11 @@ /** - * Log a message and exception with error log level. + * Logs a message with java.util.logging.Level.SEVERE. + * + * @param message to log + * @param exception log this cause + * @see org.apache.commons.logging.Log#error(Object, Throwable) */ public void error(Object message, Throwable exception) { log(Level.SEVERE, String.valueOf(message), exception); @@ -136,7 +150,10 @@ /** - * Log a message with fatal log level. + * Logs a message with java.util.logging.Level.SEVERE. + * + * @param message to log + * @see org.apache.commons.logging.Log#fatal(Object) */ public void fatal(Object message) { log(Level.SEVERE, String.valueOf(message), null); @@ -144,7 +161,11 @@ /** - * Log a message and exception with fatal log level. + * Logs a message with java.util.logging.Level.SEVERE. + * + * @param message to log + * @param exception log this cause + * @see org.apache.commons.logging.Log#fatal(Object, Throwable) */ public void fatal(Object message, Throwable exception) { log(Level.SEVERE, String.valueOf(message), exception); @@ -163,7 +184,10 @@ /** - * Log a message with info log level. + * Logs a message with java.util.logging.Level.INFO. + * + * @param message to log + * @see org.apache.commons.logging.Log#info(Object) */ public void info(Object message) { log(Level.INFO, String.valueOf(message), null); @@ -171,7 +195,11 @@ /** - * Log a message and exception with info log level. + * Logs a message with java.util.logging.Level.INFO. + * + * @param message to log + * @param exception log this cause + * @see org.apache.commons.logging.Log#info(Object, Throwable) */ public void info(Object message, Throwable exception) { log(Level.INFO, String.valueOf(message), exception); @@ -227,7 +255,10 @@ /** - * Log a message with trace log level. + * Logs a message with java.util.logging.Level.FINEST. + * + * @param message to log + * @see org.apache.commons.logging.Log#trace(Object) */ public void trace(Object message) { log(Level.FINEST, String.valueOf(message), null); @@ -235,7 +266,11 @@ /** - * Log a message and exception with trace log level. + * Logs a message with java.util.logging.Level.FINEST. + * + * @param message to log + * @param exception log this cause + * @see org.apache.commons.logging.Log#trace(Object, Throwable) */ public void trace(Object message, Throwable exception) { log(Level.FINEST, String.valueOf(message), exception); @@ -243,7 +278,10 @@ /** - * Log a message with warn log level. + * Logs a message with java.util.logging.Level.WARNING. + * + * @param message to log + * @see org.apache.commons.logging.Log#warn(Object) */ public void warn(Object message) { log(Level.WARNING, String.valueOf(message), null); @@ -251,7 +289,11 @@ /** - * Log a message and exception with warn log level. + * Logs a message with java.util.logging.Level.WARNING. + * + * @param message to log + * @param exception log this cause + * @see org.apache.commons.logging.Log#warn(Object, Throwable) */ public void warn(Object message, Throwable exception) { log(Level.WARNING, String.valueOf(message), exception); --------------------------------------------------------------------- To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: commons-dev-help@jakarta.apache.org