vote up 1 vote down star

We have an application that we access over Java web start internally at our office.

all the logs produced by the app are displayed in Firefox's console.

what I want to do is to redirect that to a file.

is that possible ?

and how to do that ?

P.S : the application is designed as follow : a client app that accesses an EJB on a server.

the client part is the one made available through java webstart.

flag

49% accept rate
What is used for logging (Log4j, java.util.logging, something else? – Yishai Sep 24 at 15:35
the guys who wrote the app used Log4j in some places but mostly used System.out.println() all over the code. – Attilah Sep 24 at 15:43

1 Answer

vote up 0 vote down check

I figured using the System.setOut method could be used to redirect all System.out.println() outputs to a file.

Hence, this could be used in my app :

        System.setOut(new PrintStream("C:\\log.txt"));
link|flag

Your Answer

Get an OpenID
or

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