Package echo.output
Interface PluginLog
-
- All Known Implementing Classes:
MavenPluginLog
public interface PluginLog
Interface for the internal Maven plugin logger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
debug(java.lang.String content)
Log the content to the debug level.void
debug(java.lang.Throwable throwable)
Log the throwable to the debug level.void
info(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.
-
-