Package org.apache.maven.internal.impl
Class DefaultLog
java.lang.Object
org.apache.maven.internal.impl.DefaultLog
- All Implemented Interfaces:
Log
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoiddebug(CharSequence content) Sends a message to the user in the debug error level.voiddebug(CharSequence content, Throwable error) Sends a message (and accompanying exception) to the user in the debug error level.voidSends an exception to the user in the debug error level.voidvoidvoiderror(CharSequence content) Sends a message to the user in the error error level.voiderror(CharSequence content, Throwable error) Sends a message (and accompanying exception) to the user in the error error level.voidSends an exception to the user in the error error level.voidvoidvoidinfo(CharSequence content) Sends a message to the user in the info error level.voidinfo(CharSequence content, Throwable error) Sends a message (and accompanying exception) to the user in the info error level.voidSends an exception to the user in the info error level.voidvoidbooleanReturns true if the debug error level is enabled.booleanReturns true if the error error level is enabled.booleanReturns true if the info error level is enabled.booleanReturns true if the warn error level is enabled.voidwarn(CharSequence content) Sends a message to the user in the warn error level.voidwarn(CharSequence content, Throwable error) Sends a message (and accompanying exception) to the user in the warn error level.voidSends an exception to the user in the warn error level.voidvoid
-
Constructor Details
-
DefaultLog
public DefaultLog(org.slf4j.Logger logger)
-
-
Method Details
-
debug
Description copied from interface:LogSends a message to the user in the debug error level. -
debug
Description copied from interface:LogSends a message (and accompanying exception) to the user in the debug error level. The error's stacktrace will be output when this error level is enabled. -
debug
Description copied from interface:LogSends an exception to the user in the debug error level. The stack trace for this exception will be output when this error level is enabled. -
debug
-
debug
-
info
Description copied from interface:LogSends a message to the user in the info error level. -
info
Description copied from interface:LogSends a message (and accompanying exception) to the user in the info error level. The error's stacktrace will be output when this error level is enabled. -
info
Description copied from interface:LogSends an exception to the user in the info error level. The stack trace for this exception will be output when this error level is enabled. -
info
-
info
-
warn
Description copied from interface:LogSends a message to the user in the warn error level. -
warn
Description copied from interface:LogSends a message (and accompanying exception) to the user in the warn error level. The error's stacktrace will be output when this error level is enabled. -
warn
Description copied from interface:LogSends an exception to the user in the warn error level. The stack trace for this exception will be output when this error level is enabled. -
warn
-
warn
-
error
Description copied from interface:LogSends a message to the user in the error error level. -
error
Description copied from interface:LogSends a message (and accompanying exception) to the user in the error error level. The error's stacktrace will be output when this error level is enabled. -
error
Description copied from interface:LogSends an exception to the user in the error error level. The stack trace for this exception will be output when this error level is enabled. -
error
-
error
-
isDebugEnabled
public boolean isDebugEnabled()Description copied from interface:LogReturns true if the debug error level is enabled..- Specified by:
isDebugEnabledin interfaceLog- Returns:
- true if the debug error level is enabled
-
isInfoEnabled
public boolean isInfoEnabled()Description copied from interface:LogReturns true if the info error level is enabled..- Specified by:
isInfoEnabledin interfaceLog- Returns:
- true if the info error level is enabled
-
isWarnEnabled
public boolean isWarnEnabled()Description copied from interface:LogReturns true if the warn error level is enabled..- Specified by:
isWarnEnabledin interfaceLog- Returns:
- true if the warn error level is enabled
-
isErrorEnabled
public boolean isErrorEnabled()Description copied from interface:LogReturns true if the error error level is enabled..- Specified by:
isErrorEnabledin interfaceLog- Returns:
- true if the error error level is enabled
-