Interface Log
- All Known Implementing Classes:
- DefaultLog,- SystemStreamLog
Deprecated.
Use SLF4J directly
This interface supplies the API for providing feedback to the user from the 
There should be no big surprises here, although you may notice that the methods accept
Mojo, using standard
 Maven channels.There should be no big surprises here, although you may notice that the methods accept
java.lang.CharSequence rather than java.lang.String. This is provided mainly as a
 convenience, to enable developers to pass things like java.lang.StringBuffer directly into the logger,
 rather than formatting first by calling toString().- 
Method SummaryModifier and TypeMethodDescriptionvoiddebug(CharSequence content) Deprecated.Send a message to the user in the debug error level.voiddebug(CharSequence content, Throwable error) Deprecated.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.voidDeprecated.Send 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) Deprecated.Send a message to the user in the error error level.voiderror(CharSequence content, Throwable error) Deprecated.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.voidDeprecated.Send 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) Deprecated.Send a message to the user in the info error level.voidinfo(CharSequence content, Throwable error) Deprecated.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.voidDeprecated.Send 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.booleanDeprecated.booleanDeprecated.booleanDeprecated.booleanDeprecated.voidwarn(CharSequence content) Deprecated.Send a message to the user in the warn error level.voidwarn(CharSequence content, Throwable error) Deprecated.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.voidDeprecated.Send 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.
- 
Method Details- 
isDebugEnabledboolean isDebugEnabled()Deprecated.- Returns:
- true if the debug error level is enabled
 
- 
debugDeprecated.Send a message to the user in the debug error level.- Parameters:
- content-
 
- 
debugDeprecated.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.- Parameters:
- content-
- error-
 
- 
debugDeprecated.Send 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.- Parameters:
- error-
 
- 
isInfoEnabledboolean isInfoEnabled()Deprecated.- Returns:
- true if the info error level is enabled
 
- 
infoDeprecated.Send a message to the user in the info error level.- Parameters:
- content-
 
- 
infoDeprecated.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.- Parameters:
- content-
- error-
 
- 
infoDeprecated.Send 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.- Parameters:
- error-
 
- 
isWarnEnabledboolean isWarnEnabled()Deprecated.- Returns:
- true if the warn error level is enabled
 
- 
warnDeprecated.Send a message to the user in the warn error level.- Parameters:
- content-
 
- 
warnDeprecated.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.- Parameters:
- content-
- error-
 
- 
warnDeprecated.Send 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.- Parameters:
- error-
 
- 
isErrorEnabledboolean isErrorEnabled()Deprecated.- Returns:
- true if the error error level is enabled
 
- 
errorDeprecated.Send a message to the user in the error error level.- Parameters:
- content-
 
- 
errorDeprecated.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.- Parameters:
- content-
- error-
 
- 
errorDeprecated.Send 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.- Parameters:
- error-
 
 
-