Home | History | Annotate | Download | only in logging

Lines Matching defs:logging

28 package java.util.logging;
59 * Logging messages will be forwarded to registered Handler
73 * logging configuration file, as described in the description
80 * On each logging call the Logger initially performs a cheap
83 * lower than the log level, the logging call returns immediately.
86 * a LogRecord to describe the logging message. It will then call a
97 * This bundle will be used for localizing logging messages.
153 * at the time of logging.
170 * The logging methods are grouped in five main categories:
196 * method name, the Logging framework will make a "best effort"
197 * to determine which class and method called into the logging method.
212 * to that instance. Note that in order to intercept all logging
214 * All the other logging methods are implemented as calls on this
223 static final String SYSTEM_LOGGER_RB_NAME = "sun.util.logging.resources.logging";
335 * who are making casual use of the Logging package. Developers
336 * who are making serious use of the logging package (for example
338 * with appropriate names, so that logging can be controlled on a
427 // Until all JDK code converted to call sun.util.logging.PlatformLogger
436 static boolean disableCallerCheck = getBooleanProperty("sun.util.logging.disableCallerCheck");
468 * to also send logging output to its parent's Handlers. It will
514 * based on the LogManager and it will configured to also send logging
574 // i.e. caller of sun.util.logging.PlatformLogger.getLogger
600 * {@link #setParent(java.util.logging.Logger) setParent} method
626 * {@link #setParent(java.util.logging.Logger) setParent} method
718 * All the other logging methods in this class call through
719 * this method to actually perform any logging. Subclasses can
758 // private support method for logging.
797 * Log a message, which is only to be constructed if the logging level
925 * @param sourceClass name of class that issued the logging request
926 * @param sourceMethod name of method that issued the logging request
949 * @param sourceClass name of class that issued the logging request
950 * @param sourceMethod name of method that issued the logging request
975 * @param sourceClass name of class that issued the logging request
976 * @param sourceMethod name of method that issued the logging request
1002 * @param sourceClass name of class that issued the logging request
1003 * @param sourceMethod name of method that issued the logging request
1033 * @param sourceClass name of class that issued the logging request
1034 * @param sourceMethod name of method that issued the logging request
1065 * @param sourceClass name of class that issued the logging request
1066 * @param sourceMethod name of method that issued the logging request
1089 // Private support method for logging for "logrb" methods.
1101 // Private support method for logging for "logrb" methods.
1124 * @param sourceClass name of class that issued the logging request
1125 * @param sourceMethod name of method that issued the logging request
1129 * @deprecated Use {@link #logrb(java.util.logging.Level, java.lang.String,
1158 * @param sourceClass name of class that issued the logging request
1159 * @param sourceMethod name of method that issued the logging request
1164 * @deprecated Use {@link #logrb(java.util.logging.Level, java.lang.String,
1195 * @param sourceClass name of class that issued the logging request
1196 * @param sourceMethod name of method that issued the logging request
1201 * @deprecated Use {@link #logrb(java.util.logging.Level, java.lang.String,
1231 * @param sourceClass Name of the class that issued the logging request
1232 * @param sourceMethod Name of the method that issued the logging request
1271 * @param sourceClass name of class that issued the logging request
1272 * @param sourceMethod name of method that issued the logging request
1277 * @deprecated Use {@link #logrb(java.util.logging.Level, java.lang.String,
1312 * @param sourceClass Name of the class that issued the logging request
1313 * @param sourceMethod Name of the method that issued the logging request
1333 // Start of convenience methods for logging method entries and returns.
1343 * @param sourceClass name of class that issued the logging request
1358 * @param sourceClass name of class that issued the logging request
1375 * @param sourceClass name of class that issued the logging request
1399 * @param sourceClass name of class that issued the logging request
1415 * @param sourceClass name of class that issued the logging request
1427 * terminating by throwing an exception. The logging is done
1440 * @param sourceClass name of class that issued the logging request
1556 * Log a SEVERE message, which is only to be constructed if the logging
1573 * Log a WARNING message, which is only to be constructed if the logging
1590 * Log a INFO message, which is only to be constructed if the logging
1607 * Log a CONFIG message, which is only to be constructed if the logging
1624 * Log a FINE message, which is only to be constructed if the logging
1641 * Log a FINER message, which is only to be constructed if the logging
1658 * Log a FINEST message, which is only to be constructed if the logging
1682 * can be used to turn off logging.
1721 * @param level a message logging level
1740 * Add a log Handler to receive logging messages.
1746 * @param handler a logging Handler
1763 * @param handler a logging Handler