| Author |
Logging stack trace
|
Mikael MÃ¥nsson
Greenhorn
Joined: Sep 20, 2009
Posts: 17
|
|
Hi
I am using the standard java logger, and i'm wondering about stack traces.
Normally, not using a logger, i would propagate all lower level exceptions as higher level exceptions up to the last place, the gui, and there I would present the user with an understandable error message. At the same time, for debugging, i would want to call the printstacktrace method on the exception so that I can see in what file and what line the exception occured.
Now, when I am using the logger, I would want to log both the message from the error and the stack trace for the same kind of tracability, but i don't find any simple way of doing this, is this not a common thing to do?
|
 |
Roel De Nijs
Bartender
Joined: Jul 19, 2004
Posts: 4352
|
|
Hi Mikael,
Logging is not a requirement, so I didn't logged any error. The only logging is used was some helpful debug information (parameters and return value of each method from the Data class and my business service).
To show the user a message I used this code:
And maybe this link can help you to log an exception using JUL.
Kind regards,
Roel
|
SCJA, SCJP (1.4 | 5.0 | 6.0), SCJD
http://www.javaroe.be/
|
 |
 |
|
|
subject: Logging stack trace
|
|
|