Interface PreprocessorLogger

All Known Implementing Classes:
PreprocessorMojo, PreprocessTask, PreprocessTestsMojo, SystemOutLogger

public interface PreprocessorLogger
The interface describes a logger to be used by a preprocessor during its work
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    debug(String message)
    Log a debug message
    void
    error(String message)
    Log an error message
    void
    info(String message)
    Log an information message
    void
    warning(String message)
    Log a warning message
  • Method Details

    • error

      void error(String message)
      Log an error message
      Parameters:
      message - the text to be output into the error log
    • info

      void info(String message)
      Log an information message
      Parameters:
      message - the text to be output into the information log
    • debug

      void debug(String message)
      Log a debug message
      Parameters:
      message - the text to be output into the information log
      Since:
      6.0.1
    • warning

      void warning(String message)
      Log a warning message
      Parameters:
      message - the text to be output into the warning log