Package | Description |
---|---|
java.util.logging |
Provides the classes and interfaces of
the JavaTM 2
platform's core logging facilities.
|
javax.sql.rowset.spi |
The standard classes and interfaces that a third party vendor has to
use in its implementation of a synchronization provider.
|
Modifier and Type | Field and Description |
---|---|
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) . |
Modifier and Type | Method and Description |
---|---|
static Logger |
Logger.getAnonymousLogger()
Create an anonymous Logger.
|
static Logger |
Logger.getAnonymousLogger(String resourceBundleName)
Create an anonymous Logger.
|
static Logger |
Logger.getLogger(String name)
Find or create a logger for a named subsystem.
|
Logger |
LogManager.getLogger(String name)
Method to find a named logger.
|
static Logger |
Logger.getLogger(String name,
String resourceBundleName)
Find or create a logger for a named subsystem.
|
Logger |
Logger.getParent()
Return the parent for this Logger.
|
Modifier and Type | Method and Description |
---|---|
boolean |
LogManager.addLogger(Logger logger)
Add a named logger.
|
void |
Logger.setParent(Logger parent)
Set the parent for this Logger.
|
Modifier and Type | Method and Description |
---|---|
static Logger |
SyncFactory.getLogger()
Returns the logging object for applications to retrieve
synchronization events posted by SyncProvider implementations.
|
Modifier and Type | Method and Description |
---|---|
static void |
SyncFactory.setLogger(Logger logger)
Sets the logging object to be used by the
SyncProvider
implementation provided by the SyncFactory . |
static void |
SyncFactory.setLogger(Logger logger,
Level level)
Sets the logging object that is used by
SyncProvider
implementations provided by the SyncFactory SPI. |
Submit a bug or feature Copyright © 1993, 2017, Oracle and/or its affiliates. All rights reserved.
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.