예제 #1
0
 public BatchLoggerDisposer(IBatchLogger batchLogger, string logFilePath, NotificationType notificationType)
 {
     _streamWriter = new StreamWriter(logFilePath, append: false);
     batchLogger.InitializeWith(_streamWriter, notificationType);
 }