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 TypeMethodDescriptionvoid
Deprecated.Emits the specified message.void
Deprecated.Emits the specified message along with a stack trace of the given exception.boolean
Deprecated.Indicates whether debug logging is enabled.boolean
Deprecated.Indicates whether warn logging is enabled.void
Deprecated.Emits the specified message.void
Deprecated.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:Logger
Indicates whether debug logging is enabled.- Specified by:
isDebugEnabled
in interfaceLogger
- Returns:
true
if debug logging is enabled,false
otherwise.
-
debug
Deprecated.Description copied from interface:Logger
Emits the specified message. -
debug
Deprecated.Description copied from interface:Logger
Emits the specified message along with a stack trace of the given exception. -
isWarnEnabled
public boolean isWarnEnabled()Deprecated.Description copied from interface:Logger
Indicates whether warn logging is enabled.- Specified by:
isWarnEnabled
in interfaceLogger
- Returns:
true
if warn logging is enabled,false
otherwise.
-
warn
Deprecated.Description copied from interface:Logger
Emits the specified message. -
warn
Deprecated.Description copied from interface:Logger
Emits the specified message along with a stack trace of the given exception.
-