HomeSort by relevance Sort by last modified time
    Searched refs:FINE (Results 1 - 25 of 77) sorted by null

1 2 3 4

  /libcore/ojluni/src/main/resources/sun/util/logging/resources/
logging.properties 40 FINE=FINE
logging_de.properties 40 FINE=Fein
logging_it.properties 40 FINE=Buono
logging_sv.properties 40 FINE=Fin
logging_es.properties 40 FINE=Detallado
logging_fr.properties 40 FINE=Pr\u00E9cis
logging_pt_BR.properties 40 FINE=Detalhado
logging_ja.properties 40 FINE=\u666E\u901A
logging_ko.properties 40 FINE=\uBBF8\uC138
logging_zh_CN.properties 40 FINE=\u8BE6\u7EC6
logging_zh_TW.properties 40 FINE=\u8A73\u7D30
  /external/slf4j/slf4j-jdk14/src/main/java/org/slf4j/impl/
JDK14LoggerAdapter.java 160 * Is this logger instance enabled for the FINE level?
162 * @return True if this Logger is enabled for level FINE, false otherwise.
165 return logger.isLoggable(Level.FINE);
169 * Log a message object at level FINE.
175 if (logger.isLoggable(Level.FINE)) {
176 log(SELF, Level.FINE, msg, null);
181 * Log a message at level FINE according to the specified format and argument.
185 * for level FINE.
194 if (logger.isLoggable(Level.FINE)) {
196 log(SELF, Level.FINE, ft.getMessage(), ft.getThrowable())
    [all...]
  /external/apache-http/src/org/apache/commons/logging/impl/
Jdk14Logger.java 52 protected static final Level dummyLevel = Level.FINE;
112 * Logs a message with <code>java.util.logging.Level.FINE</code>.
118 log(Level.FINE, String.valueOf(message), null);
123 * Logs a message with <code>java.util.logging.Level.FINE</code>.
130 log(Level.FINE, String.valueOf(message), exception);
218 return (getLogger().isLoggable(Level.FINE));