mirror of https://github.com/qos-ch/slf4j
minor last minute fixes
Signed-off-by: Ceki Gulcu <ceki@qos.ch>
This commit is contained in:
parent
c2e02170bb
commit
e2383c9c50
3
pom.xml
3
pom.xml
|
|
@ -378,7 +378,7 @@
|
|||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>2.10.4</version>
|
||||
<version>${maven-javadoc-plugin.version}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-javadocs</id>
|
||||
|
|
@ -389,6 +389,7 @@
|
|||
</executions>
|
||||
<configuration>
|
||||
<additionalparam>-Xdoclint:none</additionalparam>
|
||||
<failOnError>false</failOnError>
|
||||
<sourceFileExcludes>
|
||||
<sourceFileExclude>**/module-info.java</sourceFileExclude>
|
||||
</sourceFileExcludes>
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ import org.slf4j.spi.NOPLoggingEventBuilder;
|
|||
* It is expected that logging takes place through concrete implementations
|
||||
* of this interface.
|
||||
*
|
||||
* <h3>Typical usage pattern:</h3>
|
||||
* <H3>Typical usage pattern:</H3>
|
||||
* <pre>
|
||||
* import org.slf4j.Logger;
|
||||
* import org.slf4j.LoggerFactory;
|
||||
|
|
|
|||
|
|
@ -36,6 +36,7 @@ import java.util.Set;
|
|||
import java.util.concurrent.LinkedBlockingQueue;
|
||||
|
||||
import org.slf4j.event.SubstituteLoggingEvent;
|
||||
import org.slf4j.helpers.NOPLoggerFactory;
|
||||
import org.slf4j.helpers.NOP_FallbackServiceProvider;
|
||||
import org.slf4j.helpers.SubstituteServiceProvider;
|
||||
import org.slf4j.helpers.SubstituteLogger;
|
||||
|
|
@ -46,8 +47,8 @@ import org.slf4j.spi.SLF4JServiceProvider;
|
|||
/**
|
||||
* The <code>LoggerFactory</code> is a utility class producing Loggers for
|
||||
* various logging APIs, most notably for log4j, logback and JDK 1.4 logging.
|
||||
* Other implementations such as {@link org.slf4j.nop.NOPLogger NOPLogger} and
|
||||
* {@link org.slf4j.simple.SimpleLogger SimpleLogger} are also supported.
|
||||
* Other implementations such as {@link org.slf4j.helpers.NOPLogger NOPLogger} and
|
||||
* SimpleLogger are also supported.
|
||||
*
|
||||
* <p><code>LoggerFactory</code> is essentially a wrapper around an
|
||||
* {@link ILoggerFactory} instance bound with <code>LoggerFactory</code> at
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ import org.slf4j.helpers.SubstituteLogger;
|
|||
* underlying logging framework. It is called by {@link SubstituteLogger}.
|
||||
*
|
||||
*
|
||||
* @author Ceki Gülcü
|
||||
* @author Ceki Gülcü
|
||||
* @author Wessel van Norel
|
||||
*
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
package org.slf4j.spi;
|
||||
|
||||
|
||||
/**
|
||||
* Additional interface to {@link LoggingEventBuilder} and {@link LoggingEvent}.
|
||||
* Additional interface to {@link LoggingEventBuilder} and
|
||||
* {@link org.slf4j.event.LoggingEvent LoggingEvent}.
|
||||
*
|
||||
* Implementations of {@link LoggingEventBuilder} and {@link LoggingEvent} may optionally
|
||||
* implement {@link CallerBoundaryAware} in order to support caller info extraction.
|
||||
|
|
|
|||
Loading…
Reference in New Issue