Re: ADO.Net Appender connection troubles

2008-01-30 Thread Ron Grabowski
I made a CreateConnection method that's implemented like this: virtual protected IDbConnection CreateConnection(Type connectionType, string connectionString) { IDbConnection connection = (IDbConnection)Activator.CreateInstance(connectionType); connection.ConnectionString = connectionString

Re: (AUS1977)logging to different appenders dipending on level

2008-01-30 Thread si
> Is it possible use log to different appenders from same logger name dipending > on level. Yes, use the LevelRangeFilter inside each appenders configuration. ... ... More details in

(AUS1977)logging to different appenders dipending on level

2008-01-30 Thread aus1977
Is it possible use log to different appenders from same logger name dipending on level. I'll try to explane myself mor clearly .For example we have some logger named MyLogger so we need this logger to log INFO messages to ConsoleAppender,WARN messages to LogFileAppender and ERROR messages to Rol