📄 logger.java
字号:
/* * @(#)Logger.java 1.35 03/01/27 * * Copyright 2003 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package java.util.logging;import java.util.*;import java.security.*;import java.lang.ref.WeakReference;/** * 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 additon it is possible to create * "anonymous" Loggers that are not stored in the Logger namespace. * <p> * 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. * <p> * 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. * <p> * Each Logger keeps track of a "parent" Logger, which is its * nearest existing ancestor in the Logger namespace. * <p> * 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 <tt>null</tt>, 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. * <p> * 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 <tt>null</tt> as its level will inherit its * effective level from its parent. * <p> * 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. * <p> * 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. * <p> * Each Logger may have a ResourceBundle name associated with it. * The named bundle will be used for localizing logging messages. * If a Logger does not have its own ResourceBundle name, then * it will inherit the ResourceBundle name from its parent, * recursively up the tree. * <p> * 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 "{0} {1}" would format two parameters * as strings. * <p> * When mapping ResourceBundle names to ResourceBundles, the Logger * will first try to use the Thread's ContextClassLoader. If that * is null it will try the SystemClassLoader instead. As a temporary * transition feature in the initial implementation, if the Logger is * unable to locate a ResourceBundle from the ContextClassLoader or * SystemClassLoader the Logger will also search up the class stack * and use successive calling ClassLoaders to try to locate a ResourceBundle. * (This call stack search is to allow containers to transition to * using ContextClassLoaders and is likely to be removed in future * versions.) * <p> * Formatting (including localization) is the responsibility of * the output Handler, which will typically call a Formatter. * <p> * Note that formatting need not occur synchronously. It may be delayed * until a LogRecord is actually written to an external sink. * <p> * The logging methods are grouped in five main categories: * <ul> * <li><p> * There are a set of "log" methods that take a log level, a message * string, and optionally some parameters to the message string. * <li><p> * 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. * <li><p> * 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 name for use in localizing the log message. * <li><p> * There are convenience methods for tracing method entries (the * "entering" methods), method returns (the "exiting" methods) and * throwing exceptions (the "throwing" methods). * <li><p> * 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. * </ul> * <p> * For the methods that do not take an explicit source name and * method name, the Logging framework will make a "best effort" * to determine which class and method called into the logging method. * However, it is important to realize that this automatically inferred * information may only be approximate (or may even be quite wrong!). * Virtual machines are allowed to do extensive optimizations when * JITing and may entirely remove stack frames, making it impossible * to reliably locate the calling class and method. * <P> * All methods on Logger are multi-thread safe. * <p> * <b>Subclassing Information:</b> Note that a LogManager class may * provide its own implementation of named Loggers for any point in * the namespace. Therefore, any subclasses of Logger (unless they * are implemented in conjunction with a new LogManager class) should * take care to obtain a Logger instance from the LogManager class and * should delegate operations such as "isLoggable" and "log(LogRecord)" * to that instance. Note that in order to intercept all logging * output, subclasses need only override the log(LogRecord) method. * All the other logging methods are implemented as calls on this * log(LogRecord) method. * * @version 1.35, 01/27/03 * @since 1.4 */public class Logger { private static final Handler emptyHandlers[] = new Handler[0]; private static final int offValue = Level.OFF.intValue(); private LogManager manager = LogManager.getLogManager(); private String name; private ArrayList handlers; private String resourceBundleName; private boolean useParentHandlers = true; private Filter filter; private boolean anonymous; private ResourceBundle catalog; // Cached resource bundle private String catalogName; // name associated with catalog private Locale catalogLocale; // locale associated with catalog // The fields relating to parent-child relationships and levels // are managed under a separate lock, the treeLock. private static Object treeLock = new Object(); // We keep weak references from parents to children, but strong // references from children to parents. private Logger parent; // our nearest parent. private ArrayList kids; // WeakReferences to loggers that have us as parent private Level levelObject; private volatile int levelValue; // current effective level value /** * The "global" Logger object is provided as a convenience to developers * who are making casual use of the Logging package. Developers * who are making serious use of the logging package (for example * in products) should create and use their own Logger objects, * with appropriate names, so that logging can be controlled on a * suitable per-Logger granularity. * <p> * The global logger is initialized by calling Logger.getLogger("global"). */ public static final Logger global = getLogger("global"); /** * Protected method to construct a logger for a named subsystem. * <p> * The logger will be initially configured with a null Level * and with useParentHandlers true. * * @param name A name for the logger. This should * be a dot-separated name and should normally * be based on the package name or class name * of the subsystem, such as java.net * or javax.swing. It may be null for anonymous Loggers. * @param resourceBundleName name of ResourceBundle to be used for localizing * messages for this logger. May be null if none * of the messages require localization. * @throws MissingResourceException if the ResourceBundleName is non-null and * no corresponding resource can be found. */ protected Logger(String name, String resourceBundleName) { if (resourceBundleName != null) { // Note: we may get a MissingResourceException here. setupResourceInfo(resourceBundleName); } this.name = name; levelValue = Level.INFO.intValue(); } /** * Find or create a logger for a named subsystem. If a logger has * already been created with the given name it is returned. Otherwise * a new logger is created. * <p> * If a new logger is created its log level will be configured * based on the LogManager configuration and it will configured * to also send logging output to its parent's handlers. It will * be registered in the LogManager global namespace. * * @param name A name for the logger. This should * be a dot-separated name and should normally * be based on the package name or class name * of the subsystem, such as java.net * or javax.swing * @return a suitable Logger */ public static synchronized Logger getLogger(String name) { LogManager manager = LogManager.getLogManager(); Logger result = manager.getLogger(name); if (result == null) { result = new Logger(name, null); manager.addLogger(result); result = manager.getLogger(name); } return result; } /** * Find or create a logger for a named subsystem. If a logger has * already been created with the given name it is returned. Otherwise * a new logger is created. * <p> * If a new logger is created its log level will be configured * based on the LogManager and it will configured to also send logging * output to its parent loggers Handlers. It will be registered in * the LogManager global namespace. * <p> * If the named Logger already exists and does not yet have a * localization resource bundle then the given resource bundle * name is used. If the named Logger already exists and has * a different resource bundle name then an IllegalArgumentException * is thrown. * <p> * @param name A name for the logger. This should * be a dot-separated name and should normally * be based on the package name or class name * of the subsystem, such as java.net * or javax.swing * @param resourceBundleName name of ResourceBundle to be used for localizing * messages for this logger. * @return a suitable Logger * @throws MissingResourceException if the named ResourceBundle cannot be found. * @throws IllegalArgumentException if the Logger already exists and uses * a different resource bundle name. */ public static synchronized Logger getLogger(String name, String resourceBundleName) { LogManager manager = LogManager.getLogManager(); Logger result = manager.getLogger(name); if (result == null) { // Create a new logger. // Note: we may get a MissingResourceException here. result = new Logger(name, resourceBundleName); manager.addLogger(result); result = manager.getLogger(name); } if (result.resourceBundleName == null) { // Note: we may get a MissingResourceException here. result.setupResourceInfo(resourceBundleName); } else if (!result.resourceBundleName.equals(resourceBundleName)) { throw new IllegalArgumentException(result.resourceBundleName + " != " + resourceBundleName); } return result; } /** * Create an anonymous Logger. The newly created Logger is not * registered in the LogManager namespace. There will be no * access checks on updates to the logger. * <p> * This factory method is primarily intended for use from applets. * Because the resulting Logger is anonymous it can be kept private * by the creating class. This removes the need for normal security * checks, which in turn allows untrusted applet code to update * the control state of the Logger. For example an applet can do * a setLevel or an addHandler on an anonymous Logger. * <p> * Even although the new logger is anonymous, it is configured * to have the root logger ("") as its parent. This means that * by default it inherits its effective level and handlers * from the root logger. * <p> * * @return a newly created private Logger */ public static synchronized Logger getAnonymousLogger() { LogManager manager = LogManager.getLogManager(); Logger result = new Logger(null, null); result.anonymous = true; Logger root = manager.getLogger(""); result.doSetParent(root); return result; } /** * Create an anonymous Logger. The newly created Logger is not * registered in the LogManager namespace. There will be no * access checks on updates to the logger. * <p> * This factory method is primarily intended for use from applets. * Because the resulting Logger is anonymous it can be kept private * by the creating class. This removes the need for normal security * checks, which in turn allows untrusted applet code to update * the control state of the Logger. For example an applet can do * a setLevel or an addHandler on an anonymous Logger. * <p> * Even although the new logger is anonymous, it is configured * to have the root logger ("") as its parent. This means that * by default it inherits its effective level and handlers * from the root logger. * <p> * @param resourceBundleName name of ResourceBundle to be used for localizing * messages for this logger. * @return a newly created private Logger * @throws MissingResourceException if the named ResourceBundle cannot be found. */ public static synchronized Logger getAnonymousLogger(String resourceBundleName) { LogManager manager = LogManager.getLogManager(); Logger result = new Logger(null, resourceBundleName); result.anonymous = true; Logger root = manager.getLogger(""); result.doSetParent(root); return result; } /** * Retrieve the localization resource bundle for this * logger for the current default locale. Note that if * the result is null, then the Logger will use a resource * bundle inherited from its parent. * * @return localization bundle (may be null) */ public ResourceBundle getResourceBundle() { return findResourceBundle(getResourceBundleName()); }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -