Package org.eclipse.aether.spi.log
Class NullLogger
java.lang.Object
org.eclipse.aether.spi.log.NullLogger
- All Implemented Interfaces:
Logger
Deprecated.
Use SLF4J instead
A logger that disables any logging.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidDeprecated.Emits the specified message.voidDeprecated.Emits the specified message along with a stack trace of the given exception.booleanDeprecated.Indicates whether debug logging is enabled.booleanDeprecated.Indicates whether warn logging is enabled.voidDeprecated.Emits the specified message.voidDeprecated.Emits the specified message along with a stack trace of the given exception.
-
Constructor Details
-
NullLogger
NullLogger()Deprecated.
-
-
Method Details
-
isDebugEnabled
public boolean isDebugEnabled()Deprecated.Description copied from interface:LoggerIndicates whether debug logging is enabled.- Specified by:
isDebugEnabledin interfaceLogger- Returns:
trueif debug logging is enabled,falseotherwise.
-
debug
Deprecated.Description copied from interface:LoggerEmits the specified message. -
debug
Deprecated.Description copied from interface:LoggerEmits the specified message along with a stack trace of the given exception. -
isWarnEnabled
public boolean isWarnEnabled()Deprecated.Description copied from interface:LoggerIndicates whether warn logging is enabled.- Specified by:
isWarnEnabledin interfaceLogger- Returns:
trueif warn logging is enabled,falseotherwise.
-
warn
Deprecated.Description copied from interface:LoggerEmits the specified message. -
warn
Deprecated.Description copied from interface:LoggerEmits the specified message along with a stack trace of the given exception.
-