Package org.apache.maven.plugin.internal
Class MojoLogWrapper
java.lang.Object
org.apache.maven.plugin.internal.MojoLogWrapper
- All Implemented Interfaces:
- Log
- Author:
- jdcasey
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoiddebug(CharSequence content) Send a message to the user in the debug error level.voiddebug(CharSequence content, Throwable error) Send 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.voidSend 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.voiderror(CharSequence content) Send a message to the user in the error error level.voiderror(CharSequence content, Throwable error) Send 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.voidSend 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.voidinfo(CharSequence content) Send a message to the user in the info error level.voidinfo(CharSequence content, Throwable error) Send 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.voidSend 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.booleanbooleanbooleanbooleanvoidwarn(CharSequence content) Send a message to the user in the warn error level.voidwarn(CharSequence content, Throwable error) Send 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.voidSend 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.
- 
Constructor Details- 
MojoLogWrapperpublic MojoLogWrapper(org.slf4j.Logger logger) 
 
- 
- 
Method Details- 
debugDescription copied from interface:LogSend a message to the user in the debug error level.
- 
debugDescription copied from interface:LogSend 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.
- 
debugDescription copied from interface:LogSend 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.
- 
infoDescription copied from interface:LogSend a message to the user in the info error level.
- 
infoDescription copied from interface:LogSend 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.
- 
infoDescription copied from interface:LogSend 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.
- 
warnDescription copied from interface:LogSend a message to the user in the warn error level.
- 
warnDescription copied from interface:LogSend 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.
- 
warnDescription copied from interface:LogSend 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.
- 
errorDescription copied from interface:LogSend a message to the user in the error error level.
- 
errorDescription copied from interface:LogSend 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.
- 
errorDescription copied from interface:LogSend 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.
- 
isDebugEnabledpublic boolean isDebugEnabled()- Specified by:
- isDebugEnabledin interface- Log
- Returns:
- true if the debug error level is enabled
 
- 
isInfoEnabledpublic boolean isInfoEnabled()- Specified by:
- isInfoEnabledin interface- Log
- Returns:
- true if the info error level is enabled
 
- 
isWarnEnabledpublic boolean isWarnEnabled()- Specified by:
- isWarnEnabledin interface- Log
- Returns:
- true if the warn error level is enabled
 
- 
isErrorEnabledpublic boolean isErrorEnabled()- Specified by:
- isErrorEnabledin interface- Log
- Returns:
- true if the error error level is enabled
 
 
-