What do your 2 log4net configuration files look like?

In your receiving app what happens if you add a FileAppender that would
log the property values, for example:

<appender name="LogFileAppender" type="log4net.Appender.FileAppender">
  <file value="log-file.txt" />
  <layout type="log4net.Layout.PatternLayout">
    <conversionPattern value="%d %-5p %c %X{YourPropertyName} - %m%n" />
  </layout>
</appender> 

Nicko

> -----Original Message-----
> From: Deepanjan Ganguly [mailto:[EMAIL PROTECTED] 
> Sent: 21 July 2005 21:32
> To: Log4NET User
> Subject: Remoting and Adonetappender 
> 
> I am seeing a difference when I use remoting with 
> adonetappender. All values set with MDC (beta8 version) are 
> missing from the table. All the other fields are populated. 
> However when I use adonetappender directly all the mdc values 
> are being stored. 
> 
> Any idea why this might be happening?
> 
> Thanks
> 
> 

Reply via email to