Interface JamLogger

    • Method Summary

      All Methods Instance Methods Abstract Methods Deprecated Methods 
      Modifier and Type Method Description
      void error​(java.lang.String msg)
      Outputs an error as appropriate.
      void error​(java.lang.Throwable t)
      Outputs an error as appropriate.
      boolean isVerbose()
      Deprecated. 
      boolean isVerbose​(java.lang.Class c)  
      boolean isVerbose​(java.lang.Object o)  
      void setShowWarnings​(boolean b)  
      void setVerbose​(java.lang.Class c)  
      void verbose​(java.lang.String msg)
      Outputs a debug message no matter what.
      void verbose​(java.lang.String msg, java.lang.Object ifThisIsVerbose)
      Outputs a debug message if appropriate for the given object.
      void verbose​(java.lang.Throwable t)
      Outputs a debug message no matter what.
      void verbose​(java.lang.Throwable t, java.lang.Object ifThisIsVerbose)
      Outputs a debug message if appropriate for the given object.
      void warning​(java.lang.String w)
      Outputs a debug message as appropriate.
      void warning​(java.lang.Throwable t)
      Outputs a debug message as appropriate.
    • Method Detail

      • setVerbose

        void setVerbose​(java.lang.Class c)
      • isVerbose

        boolean isVerbose​(java.lang.Object o)
      • isVerbose

        boolean isVerbose​(java.lang.Class c)
      • setShowWarnings

        void setShowWarnings​(boolean b)
      • verbose

        void verbose​(java.lang.String msg,
                     java.lang.Object ifThisIsVerbose)

        Outputs a debug message if appropriate for the given object.

      • verbose

        void verbose​(java.lang.Throwable t,
                     java.lang.Object ifThisIsVerbose)

        Outputs a debug message if appropriate for the given object.

      • verbose

        void verbose​(java.lang.String msg)

        Outputs a debug message no matter what.

      • verbose

        void verbose​(java.lang.Throwable t)

        Outputs a debug message no matter what.

      • warning

        void warning​(java.lang.Throwable t)

        Outputs a debug message as appropriate.

      • warning

        void warning​(java.lang.String w)

        Outputs a debug message as appropriate.

      • error

        void error​(java.lang.Throwable t)

        Outputs an error as appropriate.

      • error

        void error​(java.lang.String msg)

        Outputs an error as appropriate.

      • isVerbose

        boolean isVerbose()
        Deprecated.
        Returns: