SLF4J API
Version 1.4.3

Uses of Interface
org.slf4j.Marker

Packages that use Marker
org.slf4j Core logging interfaces. 
org.slf4j.helpers Helper classes. 
org.slf4j.impl Implementations of core logging interfaces defined in the org.slf4j package. 
org.slf4j.spi Classes and interfaces which are internal to SLF4J. 
 

Uses of Marker in org.slf4j
 

Methods in org.slf4j that return Marker
static Marker MarkerFactory.getMarker(String name)
          Return a Marker instance as specified by the name parameter using the previously bound IMarkerFactoryinstance.
 Marker IMarkerFactory.getMarker(String name)
          Manufacture a Marker instance by name.
 

Methods in org.slf4j with parameters of type Marker
 void Marker.add(Marker child)
          Add a child Marker to this Marker.
 boolean Marker.contains(Marker other)
          Does this marker contain the 'other' marker? Marker A is defined to contain marker B, if A == B or if B is a child of A.
 void Logger.debug(Marker marker, String msg)
          Log a message with the specific Marker at the DEBUG level.
 void Logger.debug(Marker marker, String format, Object arg)
          This method is similar to Logger.debug(String, Object) method except that the marker data is also taken into consideration.
 void Logger.debug(Marker marker, String format, Object[] argArray)
          This method is similar to Logger.debug(String, Object[]) method except that the marker data is also taken into consideration.
 void Logger.debug(Marker marker, String format, Object arg1, Object arg2)
          This method is similar to Logger.debug(String, Object, Object) method except that the marker data is also taken into consideration.
 void Logger.debug(Marker marker, String msg, Throwable t)
          This method is similar to Logger.debug(String, Throwable) method except that the marker data is also taken into consideration.
 void Logger.error(Marker marker, String msg)
          Log a message with the specific Marker at the ERROR level.
 void Logger.error(Marker marker, String format, Object arg)
          This method is similar to Logger.error(String, Object) method except that the marker data is also taken into consideration.
 void Logger.error(Marker marker, String format, Object[] argArray)
          This method is similar to Logger.error(String, Object[]) method except that the marker data is also taken into consideration.
 void Logger.error(Marker marker, String format, Object arg1, Object arg2)
          This method is similar to Logger.error(String, Object, Object) method except that the marker data is also taken into consideration.
 void Logger.error(Marker marker, String msg, Throwable t)
          This method is similar to Logger.error(String, Throwable) method except that the marker data is also taken into consideration.
 void Logger.info(Marker marker, String msg)
          Log a message with the specific Marker at the INFO level.
 void Logger.info(Marker marker, String format, Object arg)
          This method is similar to Logger.info(String, Object) method except that the marker data is also taken into consideration.
 void Logger.info(Marker marker, String format, Object[] argArray)
          This method is similar to Logger.info(String, Object[]) method except that the marker data is also taken into consideration.
 void Logger.info(Marker marker, String format, Object arg1, Object arg2)
          This method is similar to Logger.info(String, Object, Object) method except that the marker data is also taken into consideration.
 void Logger.info(Marker marker, String msg, Throwable t)
          This method is similar to Logger.info(String, Throwable) method except that the marker data is also taken into consideration.
 boolean Logger.isDebugEnabled(Marker marker)
          Similar to Logger.isDebugEnabled() method except that the marker data is also taken into account.
 boolean Logger.isErrorEnabled(Marker marker)
          Similar to Logger.isErrorEnabled() method except that the marker data is also taken into consideration.
 boolean Logger.isInfoEnabled(Marker marker)
          Similar to Logger.isInfoEnabled() method except that the marker data is also taken into consideration.
 boolean Logger.isTraceEnabled(Marker marker)
          Similar to Logger.isTraceEnabled() method except that the marker data is also taken into account.
 boolean Logger.isWarnEnabled(Marker marker)
          Similar to Logger.isWarnEnabled() method except that the marker data is also taken into consideration.
 boolean Marker.remove(Marker child)
          Remove a child Marker.
 void Logger.trace(Marker marker, String msg)
          Log a message with the specific Marker at the TRACE level.
 void Logger.trace(Marker marker, String format, Object arg)
          This method is similar to Logger.trace(String, Object) method except that the marker data is also taken into consideration.
 void Logger.trace(Marker marker, String format, Object[] argArray)
          This method is similar to Logger.trace(String, Object[]) method except that the marker data is also taken into consideration.
 void Logger.trace(Marker marker, String format, Object arg1, Object arg2)
          This method is similar to Logger.trace(String, Object, Object) method except that the marker data is also taken into consideration.
 void Logger.trace(Marker marker, String msg, Throwable t)
          This method is similar to Logger.trace(String, Throwable) method except that the marker data is also taken into consideration.
 void Logger.warn(Marker marker, String msg)
          Log a message with the specific Marker at the WARN level.
 void Logger.warn(Marker marker, String format, Object arg)
          This method is similar to Logger.warn(String, Object) method except that the marker data is also taken into consideration.
 void Logger.warn(Marker marker, String format, Object[] argArray)
          This method is similar to Logger.warn(String, Object[]) method except that the marker data is also taken into consideration.
 void Logger.warn(Marker marker, String format, Object arg1, Object arg2)
          This method is similar to Logger.warn(String, Object, Object) method except that the marker data is also taken into consideration.
 void Logger.warn(Marker marker, String msg, Throwable t)
          This method is similar to Logger.warn(String, Throwable) method except that the marker data is also taken into consideration.
 

Uses of Marker in org.slf4j.helpers
 

Classes in org.slf4j.helpers that implement Marker
 class BasicMarker
          An almost trivial implementation of the Marker interface.
 

Methods in org.slf4j.helpers that return Marker
 Marker BasicMarkerFactory.getMarker(String name)
          Manufacture a BasicMarker instance by name.
 

Methods in org.slf4j.helpers with parameters of type Marker
 void BasicMarker.add(Marker child)
           
 boolean BasicMarker.contains(Marker other)
           
 void MarkerIgnoringBase.debug(Marker marker, String msg)
           
 void MarkerIgnoringBase.debug(Marker marker, String format, Object arg)
           
 void MarkerIgnoringBase.debug(Marker marker, String format, Object[] argArray)
           
 void MarkerIgnoringBase.debug(Marker marker, String format, Object arg1, Object arg2)
           
 void MarkerIgnoringBase.debug(Marker marker, String msg, Throwable t)
           
 void MarkerIgnoringBase.error(Marker marker, String msg)
           
 void MarkerIgnoringBase.error(Marker marker, String format, Object arg)
           
 void MarkerIgnoringBase.error(Marker marker, String format, Object[] argArray)
           
 void MarkerIgnoringBase.error(Marker marker, String format, Object arg1, Object arg2)
           
 void MarkerIgnoringBase.error(Marker marker, String msg, Throwable t)
           
 void MarkerIgnoringBase.info(Marker marker, String msg)
           
 void MarkerIgnoringBase.info(Marker marker, String format, Object arg)
           
 void MarkerIgnoringBase.info(Marker marker, String format, Object[] argArray)
           
 void MarkerIgnoringBase.info(Marker marker, String format, Object arg1, Object arg2)
           
 void MarkerIgnoringBase.info(Marker marker, String msg, Throwable t)
           
 boolean MarkerIgnoringBase.isDebugEnabled(Marker marker)
           
 boolean MarkerIgnoringBase.isErrorEnabled(Marker marker)
           
 boolean MarkerIgnoringBase.isInfoEnabled(Marker marker)
           
 boolean MarkerIgnoringBase.isTraceEnabled(Marker marker)
           
 boolean MarkerIgnoringBase.isWarnEnabled(Marker marker)
           
 boolean BasicMarker.remove(Marker markerToRemove)
           
 void MarkerIgnoringBase.trace(Marker marker, String msg)
           
 void MarkerIgnoringBase.trace(Marker marker, String format, Object arg)
           
 void MarkerIgnoringBase.trace(Marker marker, String format, Object[] argArray)
           
 void MarkerIgnoringBase.trace(Marker marker, String format, Object arg1, Object arg2)
           
 void MarkerIgnoringBase.trace(Marker marker, String msg, Throwable t)
           
 void MarkerIgnoringBase.warn(Marker marker, String msg)
           
 void MarkerIgnoringBase.warn(Marker marker, String format, Object arg)
           
 void MarkerIgnoringBase.warn(Marker marker, String format, Object[] argArray)
           
 void MarkerIgnoringBase.warn(Marker marker, String format, Object arg1, Object arg2)
           
 void MarkerIgnoringBase.warn(Marker marker, String msg, Throwable t)
           
 

Uses of Marker in org.slf4j.impl
 

Methods in org.slf4j.impl with parameters of type Marker
 void Log4jLoggerAdapter.log(Marker marker, String callerFQCN, int level, String msg, Throwable t)
           
 void JDK14LoggerAdapter.log(Marker marker, String callerFQCN, int level, String message, Throwable t)
           
 

Uses of Marker in org.slf4j.spi
 

Methods in org.slf4j.spi with parameters of type Marker
 void LocationAwareLogger.log(Marker marker, String fqcn, int level, String message, Throwable t)
          Printing method which support for location information.
 


SLF4J API
Version 1.4.3

Copyright © 2005-2008 QOS.ch. All Rights Reserved.