> When logging an exception object, is there anyway to print 
> out the stack
> trace information?  Right now, it seems to only print the 
> exception message.
> Is there a way to configure the output settings?

If I do

  myCategory.error("Caught an exception", e);

if prints the stack trace for me. I haven't done anything special
when configuring my output settings. I normally actually do this:

  myCategory.error("Caught an exception: " + e.getMessage(), e);

Cheers,
Mike.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to