Searched defs:Logger (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/istack/internal/logging/
H A DLogger.java35 * standard {@link java.util.logging.Logger} interface.
43 public class Logger { class
51 private final java.util.logging.Logger logger;
54 * Prevents creation of a new instance of this Logger unless used by a subclass.
56 protected Logger(final String systemLoggerName, final String componentName) { method in class:Logger
58 this.logger = java.util.logging.Logger.getLogger(systemLoggerName);
63 * The factory method returns preconfigured Logger wrapper for the class. Method calls
76 public static @NotNull Logger getLogger(final @NotNull Class<?> componentClass) {
77 return new Logger(getSystemLoggerName(componentClass), componentClass.getName());
81 * The factory method returns preconfigured Logger wrappe
[all...]
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DLogger.java42 * A Logger object is used to log messages for a specific
44 * using a hierarchical dot-separated namespace. Logger names
48 * "anonymous" Loggers that are not stored in the Logger namespace.
50 * Logger objects may be obtained by calls on one of the getLogger
51 * factory methods. These will either create a new Logger or
52 * return a suitable existing Logger. It is important to note that
53 * the Logger returned by one of the {@code getLogger} factory methods
55 * Logger is not kept.
61 * Each Logger keeps track of a "parent" Logger, whic
174 public class Logger { class
259 protected Logger(String name, String resourceBundleName) { method in class:Logger
263 Logger(String name, String resourceBundleName, Class<?> caller) { method in class:Logger
288 private Logger(String name) { method in class:Logger
[all...]

Completed in 921 milliseconds