Skip to content

Commit ec71574

Browse files
committed
Removed unwanted console logging
1 parent b45194b commit ec71574

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

Src/PChecker/CheckerCore/SystematicTesting/Strategies/Feedback/Coverage/BehavioralObserver.cs

-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ public static void NextIter()
8686
return;
8787
}
8888
int uniqueScore = GetUniqueScore(currSignature);
89-
Logger.WriteLine($"----**** UniquenessScore: {uniqueScore}");
9089
if (uniqueScore != 0)
9190
{
9291
AllTimeline.Add(currSignature);

Src/PChecker/CheckerCore/SystematicTesting/TestingEngine.cs

-2
Original file line numberDiff line numberDiff line change
@@ -651,8 +651,6 @@ private void RunNextIteration(int schedule)
651651
if (ShouldPrintIteration(schedule))
652652
{
653653
var seconds = watch.Elapsed.TotalSeconds;
654-
Logger.WriteLine($"Elapsed: {seconds}, " +
655-
$"# timelines: {TestReport.ExploredTimelines.Count}");
656654
if (Strategy is IFeedbackGuidedStrategy s)
657655
{
658656
s.DumpStats(Logger);

0 commit comments

Comments
 (0)