Package echo.output

Interface PluginLog

All Known Implementing Classes:
MavenPluginLog

public interface PluginLog
Interface for the internal Maven plugin logger
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    debug(String content)
    Log the content to the debug level.
    void
    debug(Throwable throwable)
    Log the throwable to the debug level.
    void
    info(String content)
    Send a message to the log in the info level.
  • Method Details

    • info

      void info(String content)
      Send a message to the log in the info level.
      Parameters:
      content - info message
    • debug

      void debug(Throwable throwable)
      Log the throwable to the debug level.
      Parameters:
      throwable - the "exception" to log
    • debug

      void debug(String content)
      Log the content to the debug level.