Interface Logable

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void debug​(String x)
      Write a debug message to the log.
      void error​(String x)
      Write an error message to the log.
      void info​(String x)
      Write an informational message to the log
      boolean isDebugOn()
      Query if debugging is enabled for this logger.
      void setDebugOn​(boolean setOn)
      Enable/disable debugging for this logger
      void warn​(String x)
      Write a warning to the log.
    • Method Detail

      • isDebugOn

        boolean isDebugOn()
        Query if debugging is enabled for this logger.
        Returns:
      • setDebugOn

        void setDebugOn​(boolean setOn)
        Enable/disable debugging for this logger
        Parameters:
        setOn -
      • debug

        void debug​(String x)
        Write a debug message to the log.
        Parameters:
        x -
      • info

        void info​(String x)
        Write an informational message to the log
        Parameters:
        x -
      • warn

        void warn​(String x)
        Write a warning to the log. This indicates a severe, but non-fatal condition exists.
        Parameters:
        x -
      • error

        void error​(String x)
        Write an error message to the log. Typically this is invoked as the last command before throwing an exception.
        Parameters:
        x -