vote up 1 vote down star
1

I'm using the standard logger from java.util.logging and by default the console output is directed to the error stream (i.e. same as System.err.println). How do I change the console output to the output stream (i.e. same as System.out.println)

flag

0% accept rate

5 Answers

vote up 0 vote down

Simply extend StreamHandler & in the constructor call Super(System.out,). This will avoid closing System.err - Thanks

link|flag
vote up 0 vote down

If you set setUseParentHandlers(false); only THAT class has it set. Other classes in the app will still pass it thru to stderr.

link|flag
vote up 2 vote down

I figured out one way. First remove the default console handler:

setUseParentHandlers(false);

Then subclass ConsoleHandler and in the constructor:

setOutputStream(System.out);

link|flag
vote up 0 vote down

If you use Java logging, you can change the default handler:

For example, for files: Handler fh = new FileHandler(FILENAME); Logger.getLogger(LOGGER_NAME).addHandler(fh);

If you want to output to a stream you can use StreamHandler, I think you can configure it with any output stream that you woud like, including the system stream.

link|flag
vote up 0 vote down

Have a look at the docs and source for ConsoleHandler - I'm sure you could easily write a version which just uses System.err instead of System.out. (It's a shame that ConsoleHandler doesn't allow this to be configured, to be honest.)

Then it's just a case of configuring the logging system to use your new StdoutHandler (or whatever you call it) in the normal way.

link|flag
I think ConsoleHandler is the default, there is a StreamHandler that can print to any other stream. – Uri Oct 11 '08 at 15:30
Yes, but you'd want to subclass StreamHandler so as to avoid trying to close System.err, I suspect. – Jon Skeet Oct 11 '08 at 17:59

Your Answer

Get an OpenID
or

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