In certain situations, I'd like to catch an Exception but still show the Stack Trace in the stackTrace log defined via the Log4J properties in grails. How can I do that?

I know I could write it into the "normal" log using log.error myException.stackTrace for example, but I don't want the stack trace to fill up my normal log file.

link|improve this question

69% accept rate
i don't know Java (anymore) or Log4J (anymore) or Grails - but i would think you can do what's standard is any programming language. You could throw an exception and catch it. That way no exception will leak into your log. Unless you don't want to throw exceptions in non-exceptional situations - which i completely agree with - and you're asking how, in Java, to fetch the current stack frame. – Ian Boyd Dec 6 '10 at 16:11
I do catch the Exception. And I also want the Stack Trace to appear in the log, which is not the case if I catch it. – werner5471 Dec 6 '10 at 16:29
feedback

1 Answer

up vote 3 down vote accepted

there is already a stacktrace log generated by grails.

you can get that logger and then add your log statements in the catch block of the exception

LogManager.getLogger("StackTrace")

http://grails.org/doc/latest/guide/3.%20Configuration.html#3.1.2%20Logging

link|improve this answer
Yes, but the stack trace of a caught Exception does not appear there! How can I catch the Exception and still have the stack trace logged in the stacktrace log? – werner5471 Dec 6 '10 at 18:15
Sorry... see edit – Aaron Saunders Dec 6 '10 at 18:26
That's it - thank you! I can log the full Stacktrace using org.apache.log4j.LogManager.getLogger("StackTrace").error myMessage, myException – werner5471 Dec 6 '10 at 19:54
feedback

Your Answer

 
or
required, but never shown

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