Ejemplo n.º 1
0
 /// <summary>
 /// Constructor
 /// </summary>
 public FileLogger(FileLoggingOutput output, string category)
 {
     this.category = category;
     this.output   = output;
 }
Ejemplo n.º 2
0
 public FileLoggerProvider(string filePath)
 {
     this.output = new FileLoggingOutput(filePath);
 }