Los JavaDocs para eljava.util.logging.Level
estado:
Los niveles en orden descendente son:
SEVERE
(valor más alto)WARNING
INFO
CONFIG
FINE
FINER
FINEST
(valor más bajo)
Fuente
import java.util.logging.*;
class LoggingLevelsBlunder {
public static void main(String[] args) {
Logger logger = Logger.getAnonymousLogger();
logger.setLevel(Level.FINER);
System.out.println("Logging level is: " + logger.getLevel());
for (int ii=0; ii<3; ii++) {
logger.log(Level.FINE, ii + " " + (ii*ii));
logger.log(Level.INFO, ii + " " + (ii*ii));
}
}
}
Salida
Logging level is: FINER
Jun 11, 2011 9:39:23 PM LoggingLevelsBlunder main
INFO: 0 0
Jun 11, 2011 9:39:24 PM LoggingLevelsBlunder main
INFO: 1 1
Jun 11, 2011 9:39:24 PM LoggingLevelsBlunder main
INFO: 2 4
Press any key to continue . . .
Planteamiento del problema
Mi ejemplo establece el Level
to FINER
, por lo que esperaba ver 2 mensajes para cada bucle. En cambio, veo un solo mensaje para cada bucle ( Level.FINE
faltan los mensajes).
Pregunta
¿Qué necesita cambiar para ver la salida FINE
(, FINER
o FINEST
)?
Actualizar (solución)
Gracias a la respuesta de Vineet Reynolds , esta versión funciona según mis expectativas. Muestra 3 x INFO
mensajes y 3 x FINE
mensajes.
import java.util.logging.*;
class LoggingLevelsBlunder {
public static void main(String[] args) {
Logger logger = Logger.getAnonymousLogger();
// LOG this level to the log
logger.setLevel(Level.FINER);
ConsoleHandler handler = new ConsoleHandler();
// PUBLISH this level
handler.setLevel(Level.FINER);
logger.addHandler(handler);
System.out.println("Logging level is: " + logger.getLevel());
for (int ii=0; ii<3; ii++) {
logger.log(Level.FINE, ii + " " + (ii*ii));
logger.log(Level.INFO, ii + " " + (ii*ii));
}
}
}