Class Slf4jLoggerFactory.Slf4jLoggerEx
- java.lang.Object
-
- org.eclipse.aether.internal.impl.slf4j.Slf4jLoggerFactory.Slf4jLoggerEx
-
- All Implemented Interfaces:
Logger
- Enclosing class:
- Slf4jLoggerFactory
private static final class Slf4jLoggerFactory.Slf4jLoggerEx extends java.lang.Object implements Logger
-
-
Constructor Summary
Constructors Constructor Description Slf4jLoggerEx(org.slf4j.spi.LocationAwareLogger logger)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
debug(java.lang.String msg)
Emits the specified message.void
debug(java.lang.String msg, java.lang.Throwable error)
Emits the specified message along with a stack trace of the given exception.boolean
isDebugEnabled()
Indicates whether debug logging is enabled.boolean
isWarnEnabled()
Indicates whether warn logging is enabled.void
warn(java.lang.String msg)
Emits the specified message.void
warn(java.lang.String msg, java.lang.Throwable error)
Emits the specified message along with a stack trace of the given exception.
-
-
-
Method Detail
-
isDebugEnabled
public boolean isDebugEnabled()
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
public void debug(java.lang.String msg)
Description copied from interface:Logger
Emits the specified message.
-
debug
public void debug(java.lang.String msg, java.lang.Throwable error)
Description copied from interface:Logger
Emits the specified message along with a stack trace of the given exception.
-
isWarnEnabled
public boolean isWarnEnabled()
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
public void warn(java.lang.String msg)
Description copied from interface:Logger
Emits the specified message.
-
warn
public void warn(java.lang.String msg, java.lang.Throwable error)
Description copied from interface:Logger
Emits the specified message along with a stack trace of the given exception.
-
-