Interface ConnectorLog


  • public interface ConnectorLog
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void debug​(java.lang.String msg)
      Log a debug message to the connector's log
      void logError​(java.lang.Exception e)
      Log an exception message to the connector's log
      void logError​(java.lang.String msg)
      Log an error message to the connector's log
      void logmsg​(java.lang.String msg)
      Log a message to the connector's log.
    • Method Detail

      • logmsg

        void logmsg​(java.lang.String msg)
        Log a message to the connector's log. The message is prefixed by the connector's name.
        Parameters:
        msg - The message to write to the log
      • debug

        void debug​(java.lang.String msg)
        Log a debug message to the connector's log
        Parameters:
        msg - The message to write to the log
      • logError

        void logError​(java.lang.String msg)
        Log an error message to the connector's log
        Parameters:
        msg - The message to write to the log
        Since:
        7.0
      • logError

        void logError​(java.lang.Exception e)
        Log an exception message to the connector's log
        Parameters:
        e - The exception to write to the log