Class java util logging logger

Class java util logging logger

A Logger object is used to log messages for a specific system or application component. Loggers are normally named, using a hierarchical dot-separated namespace. Logger names can be arbitrary strings, but they should normally be based on the package name or class name of the logged component, such as java.net or javax.swing. In addition it is possible to create «anonymous» Loggers that are not stored in the Logger namespace. Logger objects may be obtained by calls on one of the getLogger factory methods. These will either create a new Logger or return a suitable existing Logger. It is important to note that the Logger returned by one of the getLogger factory methods may be garbage collected at any time if a strong reference to the Logger is not kept. Logging messages will be forwarded to registered Handler objects, which can forward the messages to a variety of destinations, including consoles, files, OS logs, etc. Each Logger keeps track of a «parent» Logger, which is its nearest existing ancestor in the Logger namespace. Each Logger has a «Level» associated with it. This reflects a minimum Level that this logger cares about. If a Logger’s level is set to null, then its effective level is inherited from its parent, which may in turn obtain it recursively from its parent, and so on up the tree. The log level can be configured based on the properties from the logging configuration file, as described in the description of the LogManager class. However it may also be dynamically changed by calls on the Logger.setLevel method. If a logger’s level is changed the change may also affect child loggers, since any child logger that has null as its level will inherit its effective level from its parent. On each logging call the Logger initially performs a cheap check of the request level (e.g., SEVERE or FINE) against the effective log level of the logger. If the request level is lower than the log level, the logging call returns immediately. After passing this initial (cheap) test, the Logger will allocate a LogRecord to describe the logging message. It will then call a Filter (if present) to do a more detailed check on whether the record should be published. If that passes it will then publish the LogRecord to its output Handlers. By default, loggers also publish to their parent’s Handlers, recursively up the tree. Each Logger may have a ResourceBundle associated with it. The ResourceBundle may be specified by name, using the getLogger(java.lang.String, java.lang.String) factory method, or by value — using the setResourceBundle method. This bundle will be used for localizing logging messages. If a Logger does not have its own ResourceBundle or resource bundle name, then it will inherit the ResourceBundle or resource bundle name from its parent, recursively up the tree. Most of the logger output methods take a «msg» argument. This msg argument may be either a raw value or a localization key. During formatting, if the logger has (or inherits) a localization ResourceBundle and if the ResourceBundle has a mapping for the msg string, then the msg string is replaced by the localized value. Otherwise the original msg string is used. Typically, formatters use java.text.MessageFormat style formatting to format parameters, so for example a format string » » would format two parameters as strings. A set of methods alternatively take a «msgSupplier» instead of a «msg» argument. These methods take a Supplier function which is invoked to construct the desired log message only when the message actually is to be logged based on the effective log level thus eliminating unnecessary message construction. For example, if the developer wants to log system health status for diagnosis, with the String-accepting version, the code would look like:

 class DiagnosisMessages < static String systemHealthStatus() < // collect system health information . >> . logger.log(Level.FINER, DiagnosisMessages.systemHealthStatus()); 

With the above code, the health status is collected unnecessarily even when the log level FINER is disabled. With the Supplier-accepting version as below, the status will only be collected when the log level FINER is enabled.

 logger.log(Level.FINER, DiagnosisMessages::systemHealthStatus); 
  • There are a set of «log» methods that take a log level, a message string, and optionally some parameters to the message string.
  • There are a set of «logp» methods (for «log precise») that are like the «log» methods, but also take an explicit source class name and method name.
  • There are a set of «logrb» method (for «log with resource bundle») that are like the «logp» method, but also take an explicit resource bundle object for use in localizing the log message.
  • There are convenience methods for tracing method entries (the «entering» methods), method returns (the «exiting» methods) and throwing exceptions (the «throwing» methods).
  • Finally, there are a set of convenience methods for use in the very simplest cases, when a developer simply wants to log a simple string at a given log level. These methods are named after the standard Level names («severe», «warning», «info», etc.) and take a single argument, a message string.
Читайте также:  Указание путей в php

Field Summary

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. The preferred way to get the global logger object is via the call Logger.getGlobal() . For compatibility with old JDK versions where the Logger.getGlobal() is not available use the call Logger.getLogger(Logger.GLOBAL_LOGGER_NAME) or Logger.getLogger(«global») .

Constructor Summary

Method Summary

Log a CONFIG message, which is only to be constructed if the logging level is such that the message will actually be logged.

Log a FINE message, which is only to be constructed if the logging level is such that the message will actually be logged.

Log a FINER message, which is only to be constructed if the logging level is such that the message will actually be logged.

Log a FINEST message, which is only to be constructed if the logging level is such that the message will actually be logged.

Log a INFO message, which is only to be constructed if the logging level is such that the message will actually be logged.

Log a message, which is only to be constructed if the logging level is such that the message will actually be logged.

Log a message, specifying source class and method, with a single object parameter to the log message.

Log a lazily constructed message, specifying source class and method, with associated Throwable information.

Log a message, specifying source class, method, and resource bundle, with an optional list of message parameters.

Читайте также:  Вставление ссылки в html

Log a message, specifying source class, method, and resource bundle, with associated Throwable information.

Источник

Оцените статью