HomeSort by relevance Sort by last modified time
    Searched full:finest (Results 1 - 25 of 154) sorted by null

1 2 3 4 5 6 7

  /external/apache-harmony/logging/src/test/resources/bundles/com/android/java/util/logging/
res.properties 7 FINEST=US_FINEST
res_en_US.properties 7 FINEST=US_FINEST
res2.properties 7 FINEST=FINEST2
res3.properties 7 FINEST=FINEST3
res_zh_CN.properties 7 FINEST=ZH_CN_FINEST
  /libcore/luni/src/test/resources/bundles/java/util/logging/
res.properties 7 FINEST=US_FINEST
res_en_US.properties 7 FINEST=US_FINEST
res2.properties 7 FINEST=FINEST2
res3.properties 7 FINEST=FINEST3
res_zh_CN.properties 7 FINEST=ZH_CN_FINEST
  /external/jmdns/src/javax/jmdns/impl/
SocketListener.java 51 if (logger.isLoggable(Level.FINEST)) {
52 logger.finest(this.getName() + ".run() JmDNS in:" + msg.print(true));
72 if (logger.isLoggable(Level.FINEST)) {
73 logger.finest(this.getName() + ".run() exiting.");
NetworkTopologyDiscoveryImpl.java 66 if (logger.isLoggable(Level.FINEST)) {
67 logger.finest("Found NetworkInterface/InetAddress: " + nif + " -- " + interfaceAddress);
  /external/slf4j/slf4j-jdk14/src/main/java/org/slf4j/impl/
JDK14LoggerAdapter.java 60 * Is this logger instance enabled for the FINEST level?
62 * @return True if this Logger is enabled for level FINEST, false otherwise.
65 return logger.isLoggable(Level.FINEST);
69 * Log a message object at level FINEST.
75 if (logger.isLoggable(Level.FINEST)) {
76 log(SELF, Level.FINEST, msg, null);
81 * Log a message at level FINEST according to the specified format and
86 * for level FINEST.
95 if (logger.isLoggable(Level.FINEST)) {
97 log(SELF, Level.FINEST, ft.getMessage(), ft.getThrowable())
    [all...]
  /prebuilts/jdk/jdk8/darwin-x86/sample/jmx/jmx-scandir/
logging.properties 11 java.util.logging.ConsoleHandler.level = FINEST
  /prebuilts/jdk/jdk8/linux-x86/sample/jmx/jmx-scandir/
logging.properties 11 java.util.logging.ConsoleHandler.level = FINEST
  /external/jmdns/src/javax/jmdns/impl/tasks/
RecordReaper.java 52 if (logger.isLoggable(Level.FINEST)) {
53 logger.finest(this.getName() + ".run() JmDNS reaping cache");
Responder.java 75 if (logger.isLoggable(Level.FINEST)) {
76 logger.finest(this.getName() + "start() question=" + question);
87 if (logger.isLoggable(Level.FINEST)) {
88 logger.finest(this.getName() + "start() Responder chosen delay=" + delay);
  /libcore/luni/src/test/java/libcore/sun/util/logging/
PlatformLoggerTest.java 42 assertLogLevel("FINEST", Level.FINEST);
  /libcore/ojluni/src/main/resources/sun/util/logging/resources/
logging.properties 44 FINEST=FINEST
logging_sv.properties 44 FINEST=Finaste
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldLogRecordTest.java 46 lr.setLevel(Level.FINEST);
47 assertSame(lr.getLevel(), Level.FINEST);
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
LevelTest.java 118 assertSame(Level.FINEST, Level.parse("FINEST"));
157 assertSame(Level.FINEST, Level.parse("FINEST"));
166 assertSame(Level.FINEST, Level.parse("300"));
370 assertEquals("FINEST", MyLevel.parse("300").getName());
371 assertEquals(300, MyLevel.parse("FINEST").intValue());
MemoryHandlerTest.java 255 handler = new MemoryHandler(target, 2, Level.FINEST);
261 assertEquals(handler.getPushLevel(), Level.FINEST);
265 handler = new MemoryHandler(null, 2, Level.FINEST);
275 handler = new MemoryHandler(target, 0, Level.FINEST);
280 handler = new MemoryHandler(target, -1, Level.FINEST);
334 handler.publish(new LogRecord(Level.FINEST, "MSG4"));
  /libcore/ojluni/src/main/java/sun/util/logging/
PlatformLogger.java 97 private static final int FINEST = 300;
107 FINEST,
126 PlatformLogger.ALL, PlatformLogger.FINEST, PlatformLogger.FINER,
138 // finest, fine, finer, info first
139 case PlatformLogger.FINEST : return Level.FINEST;
393 * Logs a FINEST message.
395 public void finest(String msg) { method in class:PlatformLogger
396 loggerProxy.doLog(Level.FINEST, msg);
399 public void finest(String msg, Throwable t) method in class:PlatformLogger
403 public void finest(String msg, Object... params) { method in class:PlatformLogger
    [all...]
  /external/slf4j/slf4j-site/src/site/pages/
migrator.html 184 <li>Calls to <code>finest()</code>, <code>finer()</code> or
185 <code>finest()</code> methods of
188 <p>Given that <code>finest()</code>, <code>finer()</code> or
189 <code>finest()</code> calls could map to both trace() or debug()

Completed in 1548 milliseconds

1 2 3 4 5 6 7