Ejemplo n.º 1
0
 public ConsoleWriterLogger(ILogStringCombiner stringCombiner)
 {
     _stringCombiner = stringCombiner;
 }
Ejemplo n.º 2
0
 public FileWriterLogger(string path, ILogStringCombiner stringCombiner)
 {
     _path           = path;
     _stringCombiner = stringCombiner;
     _streamWriter   = File.CreateText(path);
 }