Class Debug


  • public final class Debug
    extends java.lang.Object
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      static class  Debug.LogLevel  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static void allow​(Debug.LogLevel level)  
      static void appendInfo​(java.lang.String str)  
      static void debug​(java.lang.String str)  
      static void debug​(java.lang.String str, java.lang.Object... obj)  
      static void debug​(java.lang.Throwable t)  
      static void error​(java.lang.String str)  
      static void error​(java.lang.String str, java.lang.Object... obj)  
      static void error​(java.lang.Throwable t)  
      static void fullLogging()  
      static java.io.PrintStream getStream​(Debug.LogLevel level)  
      static void ignore​(Debug.LogLevel level)  
      static void info​(java.lang.String str)  
      static void info​(java.lang.String str, java.lang.Object... obj)  
      static void info​(java.lang.Throwable t)  
      static void logTime()  
      static void noLogging()  
      static void setLogFile​(java.lang.String file)  
      static void setMinLogLevel​(Debug.LogLevel level)
      Set to log all events with the given or higher priority
      static void warn​(java.lang.String str)  
      static void warn​(java.lang.String str, java.lang.Object... obj)  
      static void warn​(java.lang.Throwable t)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • PRINT_CHARACTER_RANGE_TABLE

        public static final boolean PRINT_CHARACTER_RANGE_TABLE
        See Also:
        Constant Field Values
    • Method Detail

      • setLogFile

        public static void setLogFile​(java.lang.String file)
                               throws java.io.FileNotFoundException
        Throws:
        java.io.FileNotFoundException
      • setMinLogLevel

        public static void setMinLogLevel​(Debug.LogLevel level)
        Set to log all events with the given or higher priority
      • noLogging

        public static void noLogging()
      • fullLogging

        public static void fullLogging()
      • error

        public static void error​(java.lang.String str,
                                 java.lang.Object... obj)
      • warn

        public static void warn​(java.lang.String str,
                                java.lang.Object... obj)
      • info

        public static void info​(java.lang.String str,
                                java.lang.Object... obj)
      • debug

        public static void debug​(java.lang.String str,
                                 java.lang.Object... obj)
      • error

        public static void error​(java.lang.String str)
      • warn

        public static void warn​(java.lang.String str)
      • logTime

        public static void logTime()
      • info

        public static void info​(java.lang.String str)
      • appendInfo

        public static void appendInfo​(java.lang.String str)
      • debug

        public static void debug​(java.lang.String str)
      • error

        public static void error​(java.lang.Throwable t)
      • warn

        public static void warn​(java.lang.Throwable t)
      • info

        public static void info​(java.lang.Throwable t)
      • debug

        public static void debug​(java.lang.Throwable t)
      • getStream

        public static java.io.PrintStream getStream​(Debug.LogLevel level)