Searched defs:logging (Results 26 - 36 of 36) sorted by relevance

12

/openjdk7/jdk/src/share/classes/sun/util/logging/
H A DLoggingSupport.java27 package sun.util.logging;
35 * Internal API to support JRE implementation to detect if the java.util.logging
36 * support is available but with no dependency on the java.util.logging
38 * access the java.util.logging functionality that requires the caller
39 * to ensure that the logging support is {@linkplain #isAvailable available}
42 * @see sun.util.logging.PlatformLogger if you want to log messages even
43 * if the logging support is not available
53 // java.util.logging classes exist
54 Class<?> c = Class.forName("java.util.logging.LoggingProxyImpl", true, null);
68 * Returns true if java.util.logging suppor
[all...]
H A DPlatformLogger.java27 package sun.util.logging;
45 * static dependency of the logging facility and also defers the
46 * java.util.logging initialization until it is enabled.
47 * In addition, the PlatformLogger API can be used if the logging
50 * If the logging facility is not enabled, the platform loggers
51 * will output log messages per the default logging configuration
55 * When the logging facility is enabled (at startup or runtime),
56 * the java.util.logging.Logger will be created for each platform
62 * 1) a system property "java.util.logging.config.class" or
63 * "java.util.logging
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DFontUtilities.java40 import sun.util.logging.PlatformLogger;
69 private static boolean logging; field in class:FontUtilities
144 logging = logger.isEnabled();
323 return logging;
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DFileHandler.java26 package java.util.logging;
34 * Simple file logging <tt>Handler</tt>.
54 * <li> java.util.logging.FileHandler.level
57 * <li> java.util.logging.FileHandler.filter
60 * <li> java.util.logging.FileHandler.formatter
62 * (defaults to <tt>java.util.logging.XMLFormatter</tt>)
63 * <li> java.util.logging.FileHandler.encoding
66 * <li> java.util.logging.FileHandler.limit
70 * <li> java.util.logging.FileHandler.count
72 * <li> java.util.logging
[all...]
H A DLevel.java26 package java.util.logging;
34 * The Level class defines a set of standard logging levels that
35 * can be used to control logging output. The logging Level objects
36 * are ordered and are specified by ordered integers. Enabling logging
37 * at a given level also enables logging at all higher levels.
53 * off logging, and a level ALL that can be used to enable
54 * logging of all messages.
56 * It is possible for third parties to define additional logging
66 private static String defaultBundle = "sun.util.logging
[all...]
H A DLogRecord.java26 package java.util.logging;
36 * LogRecord objects are used to pass logging requests between
37 * the logging framework and individual log Handlers.
39 * When a LogRecord is passed into the logging framework it
48 * if a logging Handler wants to pass off a LogRecord to another
101 * @serial Class that issued logging call
106 * @serial Method that issued logging call
116 * @serial Thread ID for thread that issued logging call.
174 * @param level a logging level value
175 * @param msg the raw non-localized logging messag
[all...]
H A DLogManager.java27 package java.util.logging;
47 * <li> Manages a set of logging control properties. These are
49 * other logging objects to configure themselves.
57 * java.util.logging.manager system property.
60 * a properties file "lib/logging.properties" in the JRE directory.
61 * If you edit that property file you can change the default logging
67 * <li>"java.util.logging.config.class"
68 * <li>"java.util.logging.config.file"
74 * If the "java.util.logging.config.class" property is set, then the
82 * If "java.util.logging
[all...]
H A DLogger.java27 package java.util.logging;
71 * logging configuration file, as described in the description
78 * On each logging call the Logger initially performs a cheap
81 * lower than the log level, the logging call returns immediately.
84 * a LogRecord to describe the logging message. It will then call a
91 * The named bundle will be used for localizing logging messages.
123 * The logging methods are grouped in five main categories:
150 * to determine which class and method called into the logging method.
165 * to that instance. Note that in order to intercept all logging
167 * All the other logging method
[all...]
/openjdk7/jdk/src/share/back/
H A Dlog_messages.c48 static int logging; variable
105 if ( logging ) {
144 if ( logging ) {
162 logging = 0;
187 /* Send out standard logging format message */
204 /* Set up the logging with the name of a logging file. */
211 /* Turn off logging */
212 logging = 0;
215 /* Just return if not doing logging */
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/istack/internal/logging/
H A DLogger.java26 package com.sun.istack.internal.logging;
31 import java.util.logging.Level;
35 * standard {@link java.util.logging.Logger} interface.
51 private final java.util.logging.Logger logger;
58 this.logger = java.util.logging.Logger.getLogger(systemLoggerName);
69 * through the class to perform actual logging tasks.
83 * which is then used through the class to perform actual logging tasks.
280 * Method logs {@code exception}'s message as a {@code SEVERE} logging level
308 * Method logs {@code exception}'s message as a {@code SEVERE} logging level
353 * Method logs {@code exception}'s message at the logging leve
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DParser.java580 private void log(boolean logging, String s) { argument
581 if (logging) {

Completed in 144 milliseconds

12