I have an TextAppender working. I extend AppenderSkeleton and override append( LoggingEvent ... ). This works great. However I would like to be able to get a hold of the Exception Object in my appender, when calling something like:
catch( Exception e )
{
m_log.error( "My Error String", e );
}
How would I go about doing this...
There is no append( LoggingEvent ..., Exception ... ) method that I can override
right? So what else could I do?
Thanks in advance
