Interface JavaCompilerSupport.Logger

Enclosing class:
JavaCompilerSupport

public static interface JavaCompilerSupport.Logger
A logging interface for compilation messages.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Log a debug message.
    void
    info(String msg)
    Log an info message.
    boolean
    Check if debug logging is enabled.
    boolean
    Check if info logging is enabled.
  • Method Details

    • isDebugEnabled

      boolean isDebugEnabled()
      Check if debug logging is enabled.
      Returns:
      true if debug logging is enabled
    • isInfoEnabled

      boolean isInfoEnabled()
      Check if info logging is enabled.
      Returns:
      true if info logging is enabled
    • debug

      void debug(String msg)
      Log a debug message.
      Parameters:
      msg - the message to log
    • info

      void info(String msg)
      Log an info message.
      Parameters:
      msg - the message to log