Example #1
0
 protected internal Log4NetLogger(string loggerName, string category, bool useConfig, string configPath)
 {
     Log4NetManager.UseConfig  = useConfig;
     Log4NetManager.ConfigPath = configPath;
     this.log = Log4NetManager.GetLogger(loggerName, category);
 }
Example #2
0
 protected internal Log4NetLogger(string loggerName, string category)
 {
     this.log = Log4NetManager.GetLogger(loggerName, category);
 }