How are you creating your AppDomains? Are they all within the same process? How are you configuring log4net? Is log4net being configured in each of your AppDomains?
What output do you get by enabling log4net internal debug? http://logging.apache.org/log4net/release/faq.html#internalDebug Nicko > -----Original Message----- > From: Santhosh Kombiyil [mailto:[EMAIL PROTECTED] > Sent: 03 September 2005 00:35 > To: [email protected] > Subject: RemotingAppender Example > > I'm trying to setup RemotingAppender in a config file, and > trying to log from multiple AppDomains. But i could not get > this to work. Only the primary AppDomains logging goes > through to the Sink setup using RemoteLoggingServerPlugin. > I'm using LogFileAppender in the sink to log the buffered events. > > Is there anything special which i need to take care of when > doing this? > > Client's config, > > <?xml version="1.0" encoding="utf-8" ?> > <configuration> > <configSections> > <section name="log4net" > type="log4net.Config.Log4NetConfigurationSectionHandler, > log4net" /> </configSections> <log4net> <appender > name="RemotingAppender" > type="log4net.Appender.RemotingAppender" > <sink > value="tcp://localhost:8085/LoggingSink" /> <lossy > value="false" /> <bufferSize value="95" /> > <onlyFixPartialEventData value="true" /> </appender> > <root><level value="ALL" /> <appender-ref > ref="RemotingAppender" /></root> </log4net> </configuration> > > Thanks, > Santhosh > > >
