|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
This interface supplies the API for providing feedback to the user from the 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 Summary | |
void |
debug(java.lang.CharSequence content)
Send a message to the user in the debug error level. |
void |
debug(java.lang.CharSequence content,
java.lang.Throwable error)
Send a message (and accompanying exception) to the user in the debug error level. |
void |
debug(java.lang.Throwable error)
Send an exception to the user in the debug error level. |
void |
error(java.lang.CharSequence content)
Send a message to the user in the error error level. |
void |
error(java.lang.CharSequence content,
java.lang.Throwable error)
Send a message (and accompanying exception) to the user in the error error level. |
void |
error(java.lang.Throwable error)
Send an exception to the user in the error error level. |
void |
info(java.lang.CharSequence content)
Send a message to the user in the info error level. |
void |
info(java.lang.CharSequence content,
java.lang.Throwable error)
Send a message (and accompanying exception) to the user in the info error level. |
void |
info(java.lang.Throwable error)
Send an exception to the user in the info error level. |
boolean |
isDebugEnabled()
|
boolean |
isErrorEnabled()
|
boolean |
isInfoEnabled()
|
boolean |
isWarnEnabled()
|
void |
warn(java.lang.CharSequence content)
Send a message to the user in the warn error level. |
void |
warn(java.lang.CharSequence content,
java.lang.Throwable error)
Send a message (and accompanying exception) to the user in the warn error level. |
void |
warn(java.lang.Throwable error)
Send an exception to the user in the warn error level. |
| Method Detail |
public boolean isDebugEnabled()
public void debug(java.lang.CharSequence content)
content -
public void debug(java.lang.CharSequence content,
java.lang.Throwable error)
content - error - public void debug(java.lang.Throwable error)
error - public boolean isInfoEnabled()
public void info(java.lang.CharSequence content)
content -
public void info(java.lang.CharSequence content,
java.lang.Throwable error)
content - error - public void info(java.lang.Throwable error)
error - public boolean isWarnEnabled()
public void warn(java.lang.CharSequence content)
content -
public void warn(java.lang.CharSequence content,
java.lang.Throwable error)
content - error - public void warn(java.lang.Throwable error)
error - public boolean isErrorEnabled()
public void error(java.lang.CharSequence content)
content -
public void error(java.lang.CharSequence content,
java.lang.Throwable error)
content - error - public void error(java.lang.Throwable error)
error -
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||