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
> 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
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