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

/libcore/ojluni/src/main/java/java/util/logging/
H A DLevel.java49 * <li>FINE
139 * FINE is a message level providing tracing information.
141 * All of FINE, FINER, and FINEST are intended for relatively
145 * less detailed output, and FINE for the lowest volume (and
148 * In general the FINE level should be used for information
152 * FINE messages might include things like minor (recoverable)
154 * are also worth logging as FINE.
157 public static final Level FINE = new Level("FINE", 500, defaultBundle); field in class:Level
437 * Known names are the levels defined by this class (e.g., <CODE>FINE</COD
[all...]
/libcore/ojluni/src/main/java/sun/util/logging/
H A DPlatformLogger.java95 private static final int FINE = 500; field in class:PlatformLogger
109 FINE, enum constant in enum:PlatformLogger.Level
127 PlatformLogger.FINE, PlatformLogger.CONFIG, PlatformLogger.INFO,
140 case PlatformLogger.FINE : return Level.FINE;
363 * Logs a FINE message.
366 loggerProxy.doLog(Level.FINE, msg);
370 loggerProxy.doLog(Level.FINE, msg, t);
374 loggerProxy.doLog(Level.FINE, msg, params);

Completed in 50 milliseconds