A  C  D  E  G  H  I  L  M  O  R  T  W 

A

add(Marker) - Method in interface org .slf4j . Marker
Add a reference to another Marker.
ANY_MARKER - Static variable in interface org .slf4j . Marker
This constant represents any marker, including a null marker.
ANY_NON_NULL_MARKER - Static variable in interface org .slf4j . Marker
This constant represents any non-null marker.

C

contains(Marker) - Method in interface org .slf4j . Marker
Does this marker contain a reference to the 'other' marker? Marker A is defined to contain marker B, if A == B or if B is referenced by A, or if B is referenced by any one of A's references (recursively).
contains(String) - Method in interface org .slf4j . Marker
Does this marker contain the marker named 'name'? If 'name' is null the returned value is always false.

D

debug(String) - Method in interface org .slf4j . Logger
Log a message at the DEBUG level.
debug(String, Object) - Method in interface org .slf4j . Logger
Log a message at the DEBUG level according to the specified format and argument.
debug(String, Object, Object) - Method in interface org .slf4j . Logger
Log a message at the DEBUG level according to the specified format and arguments.
debug(String, Object[]) - Method in interface org .slf4j . Logger
Log a message at the DEBUG level according to the specified format and arguments.
debug(String, Throwable) - Method in interface org .slf4j . Logger
Log an exception (throwable) at the DEBUG level with an accompanying message.
debug(Marker, String) - Method in interface org .slf4j . Logger
Log a message with the specific Marker at the DEBUG level.
debug(Marker, String, Object) - Method in interface org .slf4j . Logger
This method is similar to Logger.debug(String, Object) method except that the marker data is also taken into consideration.
debug(Marker, String, Object, Object) - Method in interface org .slf4j . Logger
This method is similar to Logger.debug(String, Object, Object) method except that the marker data is also taken into consideration.
debug(Marker, String, Object[]) - Method in interface org .slf4j . Logger
This method is similar to Logger.debug(String, Object[]) method except that the marker data is also taken into consideration.
debug(Marker, String, Throwable) - Method in interface org .slf4j . Logger
This method is similar to Logger.debug(String, Throwable) method except that the marker data is also taken into consideration.

E

equals(Object) - Method in interface org .slf4j . Marker
Markers are considered equal if they have the same name.
error(String) - Method in interface org .slf4j . Logger
Log a message at the ERROR level.
error(String, Object) - Method in interface org .slf4j . Logger
Log a message at the ERROR level according to the specified format and argument.
error(String, Object, Object) - Method in interface org .slf4j . Logger
Log a message at the ERROR level according to the specified format and arguments.
error(String, Object[]) - Method in interface org .slf4j . Logger
Log a message at the ERROR level according to the specified format and arguments.
error(String, Throwable) - Method in interface org .slf4j . Logger
Log an exception (throwable) at the ERROR level with an accompanying message.
error(Marker, String) - Method in interface org .slf4j . Logger
Log a message with the specific Marker at the ERROR level.
error(Marker, String, Object) - Method in interface org .slf4j . Logger
This method is similar to Logger.error(String, Object) method except that the marker data is also taken into consideration.
error(Marker, String, Object, Object) - Method in interface org .slf4j . Logger
This method is similar to Logger.error(String, Object, Object) method except that the marker data is also taken into consideration.
error(Marker, String, Object[]) - Method in interface org .slf4j . Logger
This method is similar to Logger.error(String, Object[]) method except that the marker data is also taken into consideration.
error(Marker, String, Throwable) - Method in interface org .slf4j . Logger
This method is similar to Logger.error(String, Throwable) method except that the marker data is also taken into consideration.

G

getName() - Method in interface org .slf4j . Logger
Return the name of this Logger instance.
getName() - Method in interface org .slf4j . Marker
Get the name of this Marker.

H

hasChildren() - Method in interface org .slf4j . Marker
Deprecated.
Replaced by hasReferences().
hashCode() - Method in interface org .slf4j . Marker
Compute the hash code based on the name of this marker.
hasReferences() - Method in interface org .slf4j . Marker
Does this marker have any references?

I

info(String) - Method in interface org .slf4j . Logger
Log a message at the INFO level.
info(String, Object) - Method in interface org .slf4j . Logger
Log a message at the INFO level according to the specified format and argument.
info(String, Object, Object) - Method in interface org .slf4j . Logger
Log a message at the INFO level according to the specified format and arguments.
info(String, Object[]) - Method in interface org .slf4j . Logger
Log a message at the INFO level according to the specified format and arguments.
info(String, Throwable) - Method in interface org .slf4j . Logger
Log an exception (throwable) at the INFO level with an accompanying message.
info(Marker, String) - Method in interface org .slf4j . Logger
Log a message with the specific Marker at the INFO level.
info(Marker, String, Object) - Method in interface org .slf4j . Logger
This method is similar to Logger.info(String, Object) method except that the marker data is also taken into consideration.
info(Marker, String, Object, Object) - Method in interface org .slf4j . Logger
This method is similar to Logger.info(String, Object, Object) method except that the marker data is also taken into consideration.
info(Marker, String, Object[]) - Method in interface org .slf4j . Logger
This method is similar to Logger.info(String, Object[]) method except that the marker data is also taken into consideration.
info(Marker, String, Throwable) - Method in interface org .slf4j . Logger
This method is similar to Logger.info(String, Throwable) method except that the marker data is also taken into consideration.
isDebugEnabled() - Method in interface org .slf4j . Logger
Is the logger instance enabled for the DEBUG level?
isDebugEnabled(Marker) - Method in interface org .slf4j . Logger
Similar to Logger.isDebugEnabled() method except that the marker data is also taken into account.
isErrorEnabled() - Method in interface org .slf4j . Logger
Is the logger instance enabled for the ERROR level?
isErrorEnabled(Marker) - Method in interface org .slf4j . Logger
Similar to Logger.isErrorEnabled() method except that the marker data is also taken into consideration.
isInfoEnabled() - Method in interface org .slf4j . Logger
Is the logger instance enabled for the INFO level?
isInfoEnabled(Marker) - Method in interface org .slf4j . Logger
Similar to Logger.isInfoEnabled() method except that the marker data is also taken into consideration.
isTraceEnabled() - Method in interface org .slf4j . Logger
Is the logger instance enabled for the TRACE level?
isTraceEnabled(Marker) - Method in interface org .slf4j . Logger
Similar to Logger.isTraceEnabled() method except that the marker data is also taken into account.
isWarnEnabled() - Method in interface org .slf4j . Logger
Is the logger instance enabled for the WARN level?
isWarnEnabled(Marker) - Method in interface org .slf4j . Logger
Similar to Logger.isWarnEnabled() method except that the marker data is also taken into consideration.
iterator() - Method in interface org .slf4j . Marker
Returns an Iterator which can be used to iterate over the references of this marker.

L

Logger - Interface in org.slf4j
The org.slf4j.Logger interface is the main user entry point of SLF4J API.

M

Marker - Interface in org.slf4j
Markers are named objects used to enrich log statements.

O

org.slf4j - package org.slf4j
 

R

remove(Marker) - Method in interface org .slf4j . Marker
Remove a marker reference.
ROOT_LOGGER_NAME - Static variable in interface org .slf4j . Logger
Case insensitive String constant used to retrieve the name of the root logger.

T

trace(String) - Method in interface org .slf4j . Logger
Log a message at the TRACE level.
trace(String, Object) - Method in interface org .slf4j . Logger
Log a message at the TRACE level according to the specified format and argument.
trace(String, Object, Object) - Method in interface org .slf4j . Logger
Log a message at the TRACE level according to the specified format and arguments.
trace(String, Object[]) - Method in interface org .slf4j . Logger
Log a message at the TRACE level according to the specified format and arguments.
trace(String, Throwable) - Method in interface org .slf4j . Logger
Log an exception (throwable) at the TRACE level with an accompanying message.
trace(Marker, String) - Method in interface org .slf4j . Logger
Log a message with the specific Marker at the TRACE level.
trace(Marker, String, Object) - Method in interface org .slf4j . Logger
This method is similar to Logger.trace(String, Object) method except that the marker data is also taken into consideration.
trace(Marker, String, Object, Object) - Method in interface org .slf4j . Logger
This method is similar to Logger.trace(String, Object, Object) method except that the marker data is also taken into consideration.
trace(Marker, String, Object[]) - Method in interface org .slf4j . Logger
This method is similar to Logger.trace(String, Object[]) method except that the marker data is also taken into consideration.
trace(Marker, String, Throwable) - Method in interface org .slf4j . Logger
This method is similar to Logger.trace(String, Throwable) method except that the marker data is also taken into consideration.

W

warn(String) - Method in interface org .slf4j . Logger
Log a message at the WARN level.
warn(String, Object) - Method in interface org .slf4j . Logger
Log a message at the WARN level according to the specified format and argument.
warn(String, Object[]) - Method in interface org .slf4j . Logger
Log a message at the WARN level according to the specified format and arguments.
warn(String, Object, Object) - Method in interface org .slf4j . Logger
Log a message at the WARN level according to the specified format and arguments.
warn(String, Throwable) - Method in interface org .slf4j . Logger
Log an exception (throwable) at the WARN level with an accompanying message.
warn(Marker, String) - Method in interface org .slf4j . Logger
Log a message with the specific Marker at the WARN level.
warn(Marker, String, Object) - Method in interface org .slf4j . Logger
This method is similar to Logger.warn(String, Object) method except that the marker data is also taken into consideration.
warn(Marker, String, Object, Object) - Method in interface org .slf4j . Logger
This method is similar to Logger.warn(String, Object, Object) method except that the marker data is also taken into consideration.
warn(Marker, String, Object[]) - Method in interface org .slf4j . Logger
This method is similar to Logger.warn(String, Object[]) method except that the marker data is also taken into consideration.
warn(Marker, String, Throwable) - Method in interface org .slf4j . Logger
This method is similar to Logger.warn(String, Throwable) method except that the marker data is also taken into consideration.
A  C  D  E  G  H  I  L  M  O  R  T  W