What's the correct approach to log both an error message and an exception using slf4j?

I've tried doing this but the exception stack trace is never printed:

logger.error("Unable to parse data {}", inputMessage, e);

In this case I want to populate {} with the inputMessage as well as logging out the exception stacktrace.

The only way I can see to do this would be to do this:

logger.error("Unable to parse data " + inputMessage, e);

which is not pretty.

link|improve this question

I guess you use sl*f*4j do you? – Péter Török May 10 '11 at 14:02
Yes. (Updated my typo :)) – pjp May 10 '11 at 14:11
feedback

1 Answer

up vote 4 down vote accepted

As of SLF4J version 1.6, SLF4J will interpret the last parameter as you intended, i.e. as an exception. You must be using an older version of SLF4J API.

link|improve this answer
Great thanks for pointing that out. – pjp May 11 '11 at 14:30
feedback

Your Answer

 
or
required, but never shown

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