From 9e8fa0fd7fb0bad05bff4fe3f716830c6c981f79 Mon Sep 17 00:00:00 2001 From: duncathan Date: Fri, 16 Oct 2015 15:09:53 -0600 Subject: [PATCH] makes the condensed hard del logs less spammy --- tools/Runtime Condenser/Main.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/Runtime Condenser/Main.cpp b/tools/Runtime Condenser/Main.cpp index f1e778ff459..b1ba3546372 100644 --- a/tools/Runtime Condenser/Main.cpp +++ b/tools/Runtime Condenser/Main.cpp @@ -264,8 +264,7 @@ bool writeToFile() outputFile << endl << "** Hard deletions **"; for(int i=0; i <= maxStorage; i++) { - if(numHardDel[i] != 0) outputFile << endl << endl << "The following path has failed to GC " << numHardDel[i] << " time(s).\n"; - if(storedHardDel[i] != "Blank") outputFile << storedHardDel[i] << endl; + if(numHardDel[i] != 0 && storedHardDel[i] != "Blank") outputFile << endl << storedHardDel[i] << " - " << numHardDel[i] << " time(s).\n"; } } outputFile.close();