Package echo.output
Interface EchoOutput
- All Known Implementing Classes:
MavenEchoOutput
public interface EchoOutput
Output a message to standard output with a specific level
-
Method Summary
Modifier and TypeMethodDescriptionvoid
The message will be output with debug level (maven debugging must be turned on to see message)void
The message will be output with error levelvoid
The message will be output with a failure level (exception will occur)void
The message will be output with info level (default level)void
The message will be output with warning level
-
Method Details
-
fail
The message will be output with a failure level (exception will occur) -
error
The message will be output with error level -
warning
The message will be output with warning level -
info
The message will be output with info level (default level) -
debug
The message will be output with debug level (maven debugging must be turned on to see message)
-