Let stats have their own logs

This commit is contained in:
Matt Nadareski
2016-05-27 10:58:34 -07:00
parent ce12700cb1
commit de5fb1df94

View File

@@ -1747,8 +1747,11 @@ Make a selection:
} }
} }
Stats stats = new Stats(newinputs, single, logger); Logger statlog = new Logger(true, "stats.txt");
statlog.Start();
Stats stats = new Stats(newinputs, single, statlog);
stats.Process(); stats.Process();
statlog.Close();
} }
/// <summary> /// <summary>