Looking at the API, I can&#39;t figure out how to log an exception&#39;s stack trace along with a parameterized string. What I want is something like:<br><br>...<br>catch (FooException e) {<br>&nbsp; LOG.debug(&quot;Got a {} with value {}&quot;, 
e.getClass().getName(), e.getValue(), e);<br>}<br><br>But it seems from the API that I can either pass a Throwable to the log method, or some arguments to be interpolated into the String. Is there an idiom for doing both?
<br><br>Thanks,<br>Lowell<br>