[slf4j-dev] [GIT] SLF4J: Simple Logging Facade for Java branch master updated. v_1.6.4-1-gccd1c83

Gitbot git-noreply at pixie.qos.ch
Mon Nov 7 19:40:55 CET 2011


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "SLF4J: Simple Logging Facade for Java".

The branch, master has been updated
       via  ccd1c8355b9ed6c77b375d7efd459416f10fb62e (commit)
      from  38915dafe04496b42ec65732c9376aa26b3c81e9 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.qos.ch/gitweb/?p=slf4j.git;a=commit;h=ccd1c8355b9ed6c77b375d7efd459416f10fb62e
http://github.com/ceki/slf4j/commit/ccd1c8355b9ed6c77b375d7efd459416f10fb62e

commit ccd1c8355b9ed6c77b375d7efd459416f10fb62e
Author: Ceki Gulcu <ceki at qos.ch>
Date:   Mon Nov 7 19:40:22 2011 +0100

    improved javadocs

diff --git a/slf4j-api/src/main/java/org/slf4j/spi/LocationAwareLogger.java b/slf4j-api/src/main/java/org/slf4j/spi/LocationAwareLogger.java
index b440a56..5177f24 100644
--- a/slf4j-api/src/main/java/org/slf4j/spi/LocationAwareLogger.java
+++ b/slf4j-api/src/main/java/org/slf4j/spi/LocationAwareLogger.java
@@ -30,10 +30,10 @@ import org.slf4j.Marker;
 /**
  * An <b>optional</b> interface helping integration with logging systems capable of 
  * extracting location information. This interface is mainly used by SLF4J bridges 
- * such as jcl104-over-slf4j which need to provide hints so that the underlying logging
- * system can extract the correct location information (method name, line number, etc.).
- * 
- * 
+ * such as jcl-over-slf4j, jul-to-slf4j and log4j-over-slf4j or {@link Logger} wrappers
+ * which need to provide hints so that the underlying logging system can extract
+ * the correct location information (method name, line number).
+ *
  * @author Ceki Gulcu
  * @since 1.3
  */
@@ -49,11 +49,12 @@ public interface LocationAwareLogger extends Logger {
   /**
    * Printing method with support for location information. 
    * 
-   * @param marker
-   * @param fqcn The fully qualified class name of the <b>caller</b>
-   * @param level
-   * @param message
-   * @param t
+   * @param marker The marker to be used for this event, may be null.
+   * @param fqcn The fully qualified class name of the <b>logger instance</b>,
+   * typically the logger class, logger bridge or a logger wrapper.
+   * @param level One of the level integers defined in this interface
+   * @param message The message for the log event
+   * @param t Throwable associated with the log event, may be null.
    */  
   public void log(Marker marker, String fqcn, int level, String message, Object[] argArray, Throwable t);
   

-----------------------------------------------------------------------

Summary of changes:
 .../java/org/slf4j/spi/LocationAwareLogger.java    |   19 ++++++++++---------
 1 files changed, 10 insertions(+), 9 deletions(-)


hooks/post-receive
-- 
SLF4J: Simple Logging Facade for Java


More information about the slf4j-dev mailing list