Skip to content

Commit

Permalink
Removed unwanted console logging
Browse files Browse the repository at this point in the history
  • Loading branch information
ankushdesai committed Nov 20, 2024
1 parent b45194b commit ec71574
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ public static void NextIter()
return;
}
int uniqueScore = GetUniqueScore(currSignature);
Logger.WriteLine($"----**** UniquenessScore: {uniqueScore}");
if (uniqueScore != 0)
{
AllTimeline.Add(currSignature);
Expand Down
2 changes: 0 additions & 2 deletions Src/PChecker/CheckerCore/SystematicTesting/TestingEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -651,8 +651,6 @@ private void RunNextIteration(int schedule)
if (ShouldPrintIteration(schedule))
{
var seconds = watch.Elapsed.TotalSeconds;
Logger.WriteLine($"Elapsed: {seconds}, " +
$"# timelines: {TestReport.ExploredTimelines.Count}");
if (Strategy is IFeedbackGuidedStrategy s)
{
s.DumpStats(Logger);
Expand Down

0 comments on commit ec71574

Please sign in to comment.