예제 #1
0
 public IAppender this[Type logger]
 {
     get
     {
         commonLogger = new NLogAuditor(LoggingContext, logger.FullName);
         return(this);
     }
 }
예제 #2
0
 public IAppender this[string logger]
 {
     get
     {
         commonLogger = new NLogAuditor(LoggingContext, logger);
         return(this);
     }
 }
예제 #3
0
 public NLogAppender(LoggingContext loggingContext)
 {
     LoggingContext = loggingContext;
     commonLogger   = new NLogAuditor(LoggingContext, "Gmich.Cedrus");
 }