Skip to content

Commit

Permalink
Including number of dumped states (#17)
Browse files Browse the repository at this point in the history
* Including number of dumped states

* Update StatesDumper/StatesDumper.cs

Co-Authored-By: vncoelho <vncoelho@gmail.com>
  • Loading branch information
vncoelho authored and erikzhang committed Oct 22, 2018
1 parent 6a1c71b commit ada292d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion StatesDumper/StatesDumper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ protected override bool OnMessage(object message)
return state;
}));
File.WriteAllText(path, array.ToString());
Console.WriteLine($"States have been dumped into file {path}");
Console.WriteLine($"States ({array.Count}) have been dumped into file {path}");
}
}
}

0 comments on commit ada292d

Please sign in to comment.