Package org.slf4j.helpers
Class NOPLogger
java.lang.Object
org.slf4j.helpers.NOPLogger
- All Implemented Interfaces:
Serializable,Logger
A direct NOP (no operation) implementation of
Logger.- Author:
- Ceki Gülcü
- See Also:
- Serialized Form
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected Stringstatic NOPLoggerThe unique instance of NOPLogger.Fields inherited from interface org.slf4j.Logger
ROOT_LOGGER_NAME -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedThere is no point in creating multiple instances of NOPLogger. -
Method Summary
Modifier and TypeMethodDescriptionvoidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidThis method is similar toLogger.debug(String, Object...)method except that the marker data is also taken into consideration.voidA NOP implementation.voidThis method is similar toLogger.debug(String, Throwable)method except that the marker data is also taken into consideration.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.getName()Always returns the string value "NOP".voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.booleanAlways returns false.booleanisDebugEnabled(Marker marker)Always returns false.booleanA NOP implementation.booleanisErrorEnabled(Marker marker)Always returns false.booleanAlways returns false.booleanisInfoEnabled(Marker marker)Always returns false.booleanAlways returns false.booleanisTraceEnabled(Marker marker)Always returns false.booleanAlways returns false.booleanisWarnEnabled(Marker marker)Always returns false.protected ObjectReplace this instance with a homonymous (same name) logger returned by LoggerFactory.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.voidA NOP implementation.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.slf4j.Logger
atDebug, atError, atInfo, atTrace, atWarn, isEnabledForLevel, makeLoggingEventBuilder
-
Field Details
-
NOP_LOGGER
The unique instance of NOPLogger. -
name
-
-
Constructor Details
-
NOPLogger
protected NOPLogger()There is no point in creating multiple instances of NOPLogger. The present constructor should be "private" but we are leaving it as "protected" for compatibility.
-
-
Method Details
-
getName
Always returns the string value "NOP". -
isTraceEnabled
public final boolean isTraceEnabled()Always returns false.- Specified by:
isTraceEnabledin interfaceLogger- Returns:
- always false
-
trace
A NOP implementation. -
trace
A NOP implementation. -
trace
A NOP implementation. -
trace
A NOP implementation. -
trace
A NOP implementation. -
isDebugEnabled
public final boolean isDebugEnabled()Always returns false.- Specified by:
isDebugEnabledin interfaceLogger- Returns:
- always false
-
debug
A NOP implementation. -
debug
A NOP implementation. -
debug
A NOP implementation. -
debug
A NOP implementation. -
debug
A NOP implementation. -
isInfoEnabled
public final boolean isInfoEnabled()Always returns false.- Specified by:
isInfoEnabledin interfaceLogger- Returns:
- always false
-
info
A NOP implementation. -
info
A NOP implementation. -
info
A NOP implementation. -
info
A NOP implementation. -
info
A NOP implementation. -
isWarnEnabled
public final boolean isWarnEnabled()Always returns false.- Specified by:
isWarnEnabledin interfaceLogger- Returns:
- always false
-
warn
A NOP implementation. -
warn
A NOP implementation. -
warn
A NOP implementation. -
warn
A NOP implementation. -
warn
A NOP implementation. -
isErrorEnabled
public final boolean isErrorEnabled()A NOP implementation.- Specified by:
isErrorEnabledin interfaceLogger- Returns:
- True if this Logger is enabled for the ERROR level, false otherwise.
-
error
A NOP implementation. -
error
A NOP implementation. -
error
A NOP implementation. -
error
A NOP implementation. -
error
A NOP implementation. -
isTraceEnabled
Always returns false.- Specified by:
isTraceEnabledin interfaceLogger- Parameters:
marker- The marker data to take into consideration- Returns:
- always false
-
trace
A NOP implementation. -
trace
A NOP implementation. -
trace
A NOP implementation. -
trace
A NOP implementation. -
trace
A NOP implementation. -
isDebugEnabled
Always returns false.- Specified by:
isDebugEnabledin interfaceLogger- Parameters:
marker- The marker data to take into consideration- Returns:
- always false
-
debug
A NOP implementation. -
debug
A NOP implementation. -
debug
A NOP implementation. -
debug
Description copied from interface:LoggerThis method is similar toLogger.debug(String, Object...)method except that the marker data is also taken into consideration. -
debug
Description copied from interface:LoggerThis method is similar toLogger.debug(String, Throwable)method except that the marker data is also taken into consideration. -
isInfoEnabled
Always returns false.- Specified by:
isInfoEnabledin interfaceLogger- Parameters:
marker- The marker data to take into consideration- Returns:
- always false
-
info
A NOP implementation. -
info
A NOP implementation. -
info
A NOP implementation. -
info
A NOP implementation. -
info
A NOP implementation. -
isWarnEnabled
Always returns false.- Specified by:
isWarnEnabledin interfaceLogger- Parameters:
marker- The marker data to take into consideration- Returns:
- always false
-
warn
A NOP implementation. -
warn
A NOP implementation. -
warn
A NOP implementation. -
warn
A NOP implementation. -
warn
A NOP implementation. -
isErrorEnabled
Always returns false.- Specified by:
isErrorEnabledin interfaceLogger- Parameters:
marker- The marker data to take into consideration- Returns:
- always false
-
error
A NOP implementation. -
error
A NOP implementation. -
error
A NOP implementation. -
error
A NOP implementation. -
error
A NOP implementation. -
readResolve
Replace this instance with a homonymous (same name) logger returned by LoggerFactory. Note that this method is only called during deserialization.This approach will work well if the desired ILoggerFactory is the one referenced by LoggerFactory. However, if the user manages its logger hierarchy through a different (non-static) mechanism, e.g. dependency injection, then this approach would be mostly counterproductive.
- Returns:
- logger with same name as returned by LoggerFactory
- Throws:
ObjectStreamException
-