I want simply to log on the console using java.util.Logging:

Logger log = Logger.getLogger("my.logger");
log.setLevel(Level.ALL);
ConsoleHandler handler = new ConsoleHandler();
handler.setFormatter(new SimpleFormatter());
log.addHandler(handler);
log.fine("hello world");

but this prints out nothing. What am I missing?

Thanks

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

Very simple, a logger can have several handlers, with each a different level.

handler.setLevel(Level.ALL);
link|improve this answer
1  
Which begs the question: just what is the purpose of Logger.setLevel(), if it doesn't set the levels? – user949300 Feb 8 at 19:10
The ConsoleHandler starts with level INFO. The levels are combined. My personal opinion is that the logging API does not provide an algebra, a sensible set of combinable operations with well defined semantics. – Joop Eggen Feb 8 at 19:32
No argument here... – user949300 Feb 8 at 23:30
feedback

I'm no expert on java logging, but if you change log.fine() to log.info() it will print. There's something fishy about fine - in practice, I never used it. Hopefully somebody who knows more can answer that.

ADDED: Yes, fine is special. I found an earlier SO answer for this:

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.