Uses of Class
java16.util.logging.Logger

Packages that use Logger
java16.util.logging   
 

Uses of Logger in java16.util.logging
 

Fields in java16.util.logging declared as Logger
static Logger Logger.global
          Deprecated. Initialization of this field is prone to deadlocks. The field must be initialized by the Logger class initialization which may cause deadlocks with the LogManager class initialization. In such cases two class initialization wait for each other to complete. As of JDK version 1.6, the preferred way to get the global logger object is via the call Logger.getLogger(Logger.GLOBAL_LOGGER_NAME).
 

Methods in java16.util.logging that return Logger
static Logger Logger.getAnonymousLogger()
          Create an anonymous Logger.
static Logger Logger.getAnonymousLogger(java.lang.String resourceBundleName)
          Create an anonymous Logger.
 Logger LogManager.getLogger(java.lang.String name)
          Method to find a named logger.
static Logger Logger.getLogger(java.lang.String name)
          Find or create a logger for a named subsystem.
static Logger Logger.getLogger(java.lang.String name, java.lang.String resourceBundleName)
          Find or create a logger for a named subsystem.
 Logger Logger.getParent()
          Return the parent for this Logger.
 

Methods in java16.util.logging with parameters of type Logger
 boolean LogManager.addLogger(Logger logger)
          Add a named logger.
 void Logger.setParent(Logger parent)
          Set the parent for this Logger.