Interface Logger

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void debug​(java.lang.CharSequence content)
      Send a message to the user in the debug level.
      void error​(java.lang.CharSequence string)
      Send a message to the user in the error level.
      void info​(java.lang.CharSequence content)
      Send a message to the user in the info level.
      void warn​(java.lang.CharSequence string)
      Send a message to the user in the warn level.
    • Method Detail

      • debug

        void debug​(java.lang.CharSequence content)
        Send a message to the user in the debug level.
        Parameters:
        content -
      • info

        void info​(java.lang.CharSequence content)
        Send a message to the user in the info level.
        Parameters:
        content -
      • warn

        void warn​(java.lang.CharSequence string)
        Send a message to the user in the warn level.
        Parameters:
        content -
      • error

        void error​(java.lang.CharSequence string)
        Send a message to the user in the error level.
        Parameters:
        content -