Package org.apache.maven.internal.impl
Class DefaultLog
java.lang.Object
org.apache.maven.internal.impl.DefaultLog
- All Implemented Interfaces:
- Log
- 
Constructor SummaryConstructors
- 
Method SummaryModifier 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- 
DefaultLogpublic DefaultLog(org.slf4j.Logger logger) 
 
- 
- 
Method Details- 
debugDescription copied from interface:LogSends a message to the user in the debug error level.
- 
debugDescription 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.
- 
debugDescription 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
- 
infoDescription copied from interface:LogSends a message to the user in the info error level.
- 
infoDescription 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.
- 
infoDescription 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
- 
warnDescription copied from interface:LogSends a message to the user in the warn error level.
- 
warnDescription 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.
- 
warnDescription 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
- 
errorDescription copied from interface:LogSends a message to the user in the error error level.
- 
errorDescription 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.
- 
errorDescription 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
- 
isDebugEnabledpublic boolean isDebugEnabled()Description copied from interface:LogReturns true if the debug error level is enabled.- Specified by:
- isDebugEnabledin interface- Log
- Returns:
- true if the debug error level is enabled
 
- 
isInfoEnabledpublic boolean isInfoEnabled()Description copied from interface:LogReturns true if the info error level is enabled.- Specified by:
- isInfoEnabledin interface- Log
- Returns:
- true if the info error level is enabled
 
- 
isWarnEnabledpublic boolean isWarnEnabled()Description copied from interface:LogReturns true if the warn error level is enabled.- Specified by:
- isWarnEnabledin interface- Log
- Returns:
- true if the warn error level is enabled
 
- 
isErrorEnabledpublic boolean isErrorEnabled()Description copied from interface:LogReturns true if the error error level is enabled.- Specified by:
- isErrorEnabledin interface- Log
- Returns:
- true if the error error level is enabled
 
 
-