Package echo.output
Interface PluginLog
-
- All Known Implementing Classes:
MavenPluginLog
public interface PluginLogInterface for the internal Maven plugin logger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddebug(java.lang.String content)Log the content to the debug level.voiddebug(java.lang.Throwable throwable)Log the throwable to the debug level.voidinfo(java.lang.String content)Send a message to the log in the info level.
-
-
-
Method Detail
-
info
void info(java.lang.String content)
Send a message to the log in the info level.- Parameters:
content- info message
-
debug
void debug(java.lang.Throwable throwable)
Log the throwable to the debug level.- Parameters:
throwable- the "exception" to log
-
debug
void debug(java.lang.String content)
Log the content to the debug level.
-
-