All Known Implementing Classes:
AbstractLoggingMojo, PythonCompileMojo, StandardLogger

public interface Logger
Simple maven-independent logger interface.
Author:
Holger Eichelberger, SSE
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    error(String error)
    Logs an error.
    void
    error(Throwable throwable)
    Logs a throwable.
    void
    info(String info)
    Logs an information.
    void
    warn(String warning)
    Logs a warning.
  • Method Details

    • warn

      void warn(String warning)
      Logs a warning.
      Parameters:
      warning - the warning
    • error

      void error(String error)
      Logs an error.
      Parameters:
      error - the error
    • error

      void error(Throwable throwable)
      Logs a throwable.
      Parameters:
      throwable - the throwable
    • info

      void info(String info)
      Logs an information.
      Parameters:
      info - the information