Searched refs:Logger (Results 226 - 250 of 524) sorted by relevance

1234567891011>>

/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/config/management/policy/
H A DManagementAssertion.java28 import com.sun.istack.internal.logging.Logger;
76 private static final Logger LOGGER = Logger.getLogger(ManagementAssertion.class);
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/policy/subject/
H A DBindingSubject.java30 import com.sun.istack.internal.logging.Logger;
66 private static final Logger LOGGER = Logger.getLogger(BindingSubject.class);
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/client/
H A DClientSchemaValidationTube.java45 import java.util.logging.Logger;
54 private static final Logger LOGGER = Logger.getLogger(ClientSchemaValidationTube.class.getName());
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/logger/
H A DLocalizedLoggerWrapper.java31 import java.lang.System.Logger;
32 import java.lang.System.Logger.Level;
35 * This implementation of {@link Logger} redirects all logging method
37 * methods, passing the Logger's ResourceBundle as parameter.
38 * So for instance a call to {@link Logger#log(Level, String)
40 * to a call to {@link #log(java.lang.System.Logger.Level,
48 * @param <L> Type of the wrapped Logger: {@code Logger} or an
49 * extension of the {@code Logger} interface.
51 public class LocalizedLoggerWrapper<L extends Logger> extend
[all...]
H A DBootstrapLogger.java40 import java.lang.System.Logger;
41 import java.lang.System.Logger.Level;
57 * to delay the creation of System.Logger instances until the VM is booted.
63 * A BootstrapLogger instance is both a Logger and a
66 * Once the VM is booted, it obtain the real System.Logger instance from the
78 public final class BootstrapLogger implements Logger, PlatformLogger.Bridge,
237 // It would be nice to use a Consumer<Logger> instead of a LogEvent.
347 private void log(Logger logger) {
409 // non default methods from Logger interface
434 static void log(LogEvent log, Logger logge
[all...]
/openjdk10/jdk/test/com/sun/security/sasl/digest/
H A DNoQuoteParams.java35 import java.util.logging.Logger;
55 private static Logger logger = Logger.getLogger("global");
/openjdk10/jdk/test/java/util/logging/
H A DDrainFindDeadlockTest.java29 import java.util.logging.Logger;
48 * Logger.getLogger() and LogManager.readConfiguration() in different threads)
108 Logger logger = null;
116 logger = Logger.getLogger("DrainFindDeadlockTest"+i);
H A DParentLoggersTest.java60 /* Logger names */
67 static final List<Logger> createdLoggers = new ArrayList<>();
114 createdLoggers.add(Logger.getLogger(LOGGER_NAME_1));
119 createdLoggers.add(Logger.getLogger(LOGGER_NAME_2));
/openjdk10/jdk/test/java/util/logging/Logger/entering/
H A DLoggerEnteringWithParams.java31 import java.util.logging.Logger;
39 * by Logger.entering
83 Logger logger = Logger.getLogger("some.logger");
/openjdk10/jdk/test/javax/swing/JMenuItem/ClickMenuTestManual/
H A DClickMenuTestManual.java39 import java.util.logging.Logger;
166 Logger.getLogger(ClickMenuTestManual.class
173 Logger.getLogger(ClickMenuTestManual.class
/openjdk10/jdk/test/sun/management/jdp/
H A DJdpTestCase.java40 import java.util.logging.Logger;
43 final Logger log = Logger.getLogger("sun.management.jdp");
/openjdk10/jdk/test/sun/security/krb5/auto/
H A DSaslGSS.java47 import java.util.logging.Logger;
92 Logger.getLogger("javax.security.sasl").setLevel(Level.ALL);
95 Logger.getLogger("javax.security.sasl").addHandler(h);
/openjdk10/jdk/test/sun/rmi/runtime/Log/checkLogging/
H A DCheckLogging.java41 import java.util.logging.Logger;
83 private static Logger logger;
97 logger = Logger.getLogger("sun.rmi.client.call");
/openjdk10/jdk/test/sun/java2d/marlin/
H A DCrashPaintTest.java42 import java.util.logging.Logger;
60 final Logger log = Logger.getLogger("sun.java2d.marlin");
/openjdk10/jdk/test/javax/management/remote/mandatory/connection/
H A DRMIConnectorLogAttributesTest.java31 import java.util.logging.Logger;
65 private static final Logger logger = Logger.getLogger("javax.management.remote.rmi");
/openjdk10/jdk/test/java/lang/System/LoggerFinder/internal/BootstrapLogger/
H A DBootstrapLoggerTest.java30 import java.lang.System.Logger;
31 import java.lang.System.Logger.Level;
108 Logger logger = LazyLoggers.getLogger("foo.bar", Thread.class.getModule());
208 Class<?> loggerClass = Class.forName("java.util.logging.Logger");
212 // java.util.logging.Logger.getLogger("foo")
219 // java.util.logging.Logger.getLogger("").getHandlers()[0]
255 Logger baz = System.getLogger("foo.bar.baz");
260 Logger bazbaz = null;
271 Logger bazbaz2 = System.getLogger("foo.bar.baz.baz");
/openjdk10/hotspot/src/share/tools/IdealGraphVisualizer/Filter/src/com/sun/hotspot/igv/filter/
H A DCustomFilter.java33 import java.util.logging.Logger;
118 Logger.getLogger("global").log(Level.SEVERE, null, ex);
/openjdk10/jaxws/src/java.xml.bind/share/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...]
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/bytecode/
H A DClassTailor.java34 import java.util.logging.Logger;
47 private static final Logger logger = Util.getClassLogger();
/openjdk10/jaxws/src/java.xml.ws/share/classes/javax/xml/ws/spi/
H A DServiceLoaderUtil.java30 import java.util.logging.Logger;
41 Logger logger,
/openjdk10/jaxws/src/java.xml.ws/share/classes/javax/xml/soap/
H A DServiceLoaderUtil.java30 import java.util.logging.Logger;
41 Logger logger,
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/assembler/
H A DTubelineAssemblyController.java29 import com.sun.istack.internal.logging.Logger;
130 Logger.getLogger(TubelineAssemblyController.class).warning(
/openjdk10/jdk/src/demo/share/jfc/TableExample/
H A DTableExample3.java49 import java.util.logging.Logger;
166 Logger.getLogger(TableExample3.class.getName()).log(Level.SEVERE,
/openjdk10/jdk/src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/utils/resolver/
H A DResourceResolverSpi.java39 private static java.util.logging.Logger log =
40 java.util.logging.Logger.getLogger(ResourceResolverSpi.class.getName());
/openjdk10/jdk/src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/keys/content/x509/
H A DXMLX509SKI.java44 private static java.util.logging.Logger log =
45 java.util.logging.Logger.getLogger(XMLX509SKI.class.getName());

Completed in 209 milliseconds

1234567891011>>