Home
last modified time | relevance | path

Searched refs:FINER (Results 1 – 19 of 19) sorted by relevance

/libcore/ojluni/src/main/java/sun/util/logging/
DPlatformLogger.java96 private static final int FINER = 400; field in PlatformLogger
108 FINER, enumConstant
126 PlatformLogger.ALL, PlatformLogger.FINEST, PlatformLogger.FINER,
141 case PlatformLogger.FINER : return Level.FINER; in valueOf()
381 loggerProxy.doLog(Level.FINER, msg); in finer()
385 loggerProxy.doLog(Level.FINER, msg, t); in finer()
389 loggerProxy.doLog(Level.FINER, msg, params); in finer()
/libcore/luni/src/test/resources/bundles/java/util/logging/
Dres.properties6 FINER=US_FINER key
Dres_en_US.properties6 FINER=US_FINER key
Dres2.properties6 FINER=FINER2 key
/libcore/ojluni/annotations/sdk/nullability/java/util/logging/
DLevel.annotated.java62 @libcore.util.NonNull public static final java.util.logging.Level FINER; field in Level
63 static { FINER = null; }
/libcore/ojluni/src/main/java/java/util/logging/
DLogger.java1342 logp(Level.FINER, sourceClass, sourceMethod, "ENTRY"); in entering()
1358 logp(Level.FINER, sourceClass, sourceMethod, "ENTRY {0}", param1); in entering()
1377 logp(Level.FINER, sourceClass, sourceMethod, msg); in entering()
1380 if (!isLoggable(Level.FINER)) return; in entering()
1384 logp(Level.FINER, sourceClass, sourceMethod, msg, params); in entering()
1398 logp(Level.FINER, sourceClass, sourceMethod, "RETURN"); in exiting()
1415 logp(Level.FINER, sourceClass, sourceMethod, "RETURN {0}", result); in exiting()
1440 if (!isLoggable(Level.FINER)) { in throwing()
1443 LogRecord lr = new LogRecord(Level.FINER, "THROW"); in throwing()
1529 log(Level.FINER, msg); in finer()
[all …]
DLevel.java165 public static final Level FINER = new Level("FINER", 400, defaultBundle); field in Level
/libcore/ojluni/src/main/resources/sun/util/logging/resources/
Dlogging.properties42 FINER=FINER key
Dlogging_sv.properties42 FINER=Finare key
Dlogging_fr.properties42 FINER=Plus pr\u00E9cis key
Dlogging_zh_CN.properties42 FINER=\u8F83\u8BE6\u7EC6 key
Dlogging_zh_TW.properties42 FINER=\u8F03\u8A73\u7D30 key
Dlogging_ja.properties42 FINER=\u8A73\u7D30 key
Dlogging_ko.properties42 FINER=\uBCF4\uB2E4 \uBBF8\uC138 key
Dlogging_es.properties42 FINER=Muy Detallado key
Dlogging_pt_BR.properties42 FINER=Mais Detalhado key
Dlogging_it.properties42 FINER=Migliore key
Dlogging_de.properties42 FINER=Feiner key
/libcore/luni/src/test/java/libcore/sun/util/logging/
DPlatformLoggerTest.java41 assertLogLevel("FINER", Level.FINER); in testLogLevelConstants()