I'm writing a log4net to MSMQ appender and have followed the the simple
directions to inherit from AppenderSkeleton and override the Append method.
I've done that with the following two lines of code:
protected override void Append(LoggingEvent loggingEvent)
{ string batchMsg = RenderLo
,
MessageObject = loggingEvent.RenderedMessage
};
From: [email protected] [mailto:[email protected]]
Sent: Saturday, January 02, 2010 9:07 AM
To: [email protected]
Subject: Wanting to Customize Appender for 5 fields
I'm writ