Class Logger


  • public class Logger
    extends java.lang.Object
    • Constructor Summary

      Constructors 
      Constructor Description
      Logger()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static void logDebug​(java.lang.String s)  
      static void logFatal​(java.lang.Throwable ex, java.lang.String s)
      Fails with Runtime Exception
      static void logFinest​(java.lang.String s)  
      static void logInfo​(java.lang.String s)  
      static void logInit​(java.lang.String logPath, boolean verbose)  
      static void logSevere​(java.lang.String s)  
      • Methods inherited from class java.lang.Object

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

      • Logger

        public Logger()
    • Method Detail

      • logInfo

        public static void logInfo​(java.lang.String s)
      • logDebug

        public static void logDebug​(java.lang.String s)
      • logFinest

        public static void logFinest​(java.lang.String s)
      • logSevere

        public static void logSevere​(java.lang.String s)
      • logFatal

        public static void logFatal​(java.lang.Throwable ex,
                                    java.lang.String s)
        Fails with Runtime Exception
        Parameters:
        ex - Exception that caused the failure
        s - Message to be logged
        Throws:
        java.lang.RuntimeException - a RuntimeException is always thrown when the method ends
      • logInit

        public static void logInit​(java.lang.String logPath,
                                   boolean verbose)