minor last minute fixes

Signed-off-by: Ceki Gulcu <ceki@qos.ch>
This commit is contained in:
Ceki Gulcu 2021-08-12 23:20:04 +02:00
parent c2e02170bb
commit e2383c9c50
5 changed files with 9 additions and 7 deletions

View File

@ -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>

View File

@ -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;

View File

@ -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

View File

@ -12,7 +12,7 @@ import org.slf4j.helpers.SubstituteLogger;
* underlying logging framework. It is called by {@link SubstituteLogger}.
*
*
* @author Ceki G&uumllc&uuml;
* @author Ceki G&uuml;lc&uuml;
* @author Wessel van Norel
*
*/

View File

@ -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.