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 Type
    Method
    Description
    void
    debug(String content)
    The message will be output with debug level (maven debugging must be turned on to see message)
    void
    error(String content)
    The message will be output with error level
    void
    fail(String content)
    The message will be output with a failure level (exception will occur)
    void
    info(String content)
    The message will be output with info level (default level)
    void
    warning(String content)
    The message will be output with warning level
  • Method Details

    • fail

      void fail(String content)
      The message will be output with a failure level (exception will occur)
    • error

      void error(String content)
      The message will be output with error level
    • warning

      void warning(String content)
      The message will be output with warning level
    • info

      void info(String content)
      The message will be output with info level (default level)
    • debug

      void debug(String content)
      The message will be output with debug level (maven debugging must be turned on to see message)