Hi,

Is it possible to add multiple loggers?
Like this:

public void Install( IWindsorContainer container, IConfigurationStore
store )
{
        container.AddFacility< LoggingFacility >(
                  f =>
f.LogUsing( LoggerImplementation.NLog ).WithConfig( "nlog.config" )
                   .LogUsing( LoggerImplementation.Console ) );
}

I tried but in console nothing gets logged. Do I need to specify
config also for Console/Trace logger?
And is there an example on how to use nlog?
The docs show only log4net and I need to know if it's possible to use
named loggers (as nlog supports them).

-- 
You received this message because you are subscribed to the Google Groups 
"Castle Project Users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/castle-project-users?hl=en.

Reply via email to