Say you catch an exception and get the following on the standard output (like, say, the console) if you do a e.printStackTrace() :

java.io.FileNotFoundException: so.txt
        at java.io.FileInputStream.<init>(FileInputStream.java)
        at ExTest.readMyFile(ExTest.java:19)
        at ExTest.main(ExTest.java:7)

Now I want to send this instead to a logger like, say, log4j to get the following:

31947 [AWT-EventQueue-0] ERROR Java.io.FileNotFoundException: so.txt
32204 [AWT-EventQueue-0] ERROR    at java.io.FileInputStream.<init>(FileInputStream.java)
32235 [AWT-EventQueue-0] ERROR    at ExTest.readMyFile(ExTest.java:19)
32370 [AWT-EventQueue-0] ERROR    at ExTest.main(ExTest.java:7)

How can I do this?

try {
   ...
} catch (Exception e) {
    final String s;
    ...  // <-- What goes here?
    log.error( s );
}
link|improve this question

61% accept rate
feedback

3 Answers

up vote 18 down vote accepted

You pass the exception directly to the logger, e.g.

try {
   ...
} catch (Exception e) {
    log.error( "failed!", e );
}

It's up to log4j to render the stack trace.

link|improve this answer
3  
The logger takes an object for its first argument and will toString() it. However the second argument has to be a Throwable and displays the stack trace. – Peter Lawrey Dec 3 '10 at 16:50
I never know what to stuff into the first String, usually I just end up doing log.error(e.getLocalizedMessage(), e) which is totally redundant. Does it handle a null for the first argument? – Mark Peters Dec 3 '10 at 16:52
2  
@Mark: Try to give it a message which is more pertinent to the context than the exception's message, e.g. what was it actually trying to do at the time? – skaffman Dec 3 '10 at 16:53
1  
@Mark Peters, A good example could be to log the arguments to the current method as the message, or - for a FileNotFound exception the full name of the path which was tried to be opened. Anything that can help you find out what is wrong - just think you cannot debug the situation. – Thorbjørn Ravn Andersen Dec 3 '10 at 17:01
I agree with Thorbjørn Ravn Andersen. One of the most useful things to do with ever changing webapps is to print out the SQL on all database operations. If you put plenty of newlines in to have each part on a seperate line, your database client will tell you exactly where the error is if it you paste it in and execute it. – Steve Aug 6 '11 at 16:58
feedback

You can also get stack trace as string via ExceptionUtils.getStackTrace. http://commons.apache.org/lang/api-3.0/org/apache/commons/lang3/exception/ExceptionUtils.html

I use it only for log.debug, to keep log.error simple.

link|improve this answer
feedback

The relevant section of the Javadocs can be found here:

http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/Category.html

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.