Class Logger$


  • public class Logger$
    extends java.lang.Object
    Deprecated.
    Use SLF4J or direct java.util.logging instead. Since 2.6.0.
    Logger is a factory for obtaining JUL Loggers
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static Logger$ MODULE$
      Deprecated.
      Static reference to the singleton instance of this Scala object.
    • Constructor Summary

      Constructors 
      Constructor Description
      Logger$()
      Deprecated.
       
    • Method Summary

      All Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      java.util.logging.Logger apply​(java.lang.Class<?> logClass, java.lang.String logSource)
      Deprecated.
       
      java.util.logging.Logger apply​(java.lang.String logger)
      Deprecated.
       
      java.util.logging.Level mapLevel​(Logging.LogLevel level)
      Deprecated.
       
      java.util.logging.Logger root()
      Deprecated.
      Returns the JUL Root Logger
      • Methods inherited from class java.lang.Object

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

      • MODULE$

        public static final Logger$ MODULE$
        Deprecated.
        Static reference to the singleton instance of this Scala object.
    • Constructor Detail

      • Logger$

        public Logger$()
        Deprecated.
    • Method Detail

      • apply

        public java.util.logging.Logger apply​(java.lang.String logger)
        Deprecated.
        Parameters:
        logger - - which logger
        Returns:
        a Logger that corresponds for the given logger name
      • apply

        public java.util.logging.Logger apply​(java.lang.Class<?> logClass,
                                              java.lang.String logSource)
        Deprecated.
        Parameters:
        logClass - - the class to log for
        logSource - - the textual representation of the source of this log stream
        Returns:
        a Logger for the specified parameters
      • root

        public java.util.logging.Logger root()
        Deprecated.
        Returns the JUL Root Logger
      • mapLevel

        public java.util.logging.Level mapLevel​(Logging.LogLevel level)
        Deprecated.