Skip to content

Commit

Permalink
Merge pull request tgstation#12446 from duncathan/patch-1
Browse files Browse the repository at this point in the history
makes the condensed hard del logs less spammy
  • Loading branch information
Razharas committed Nov 7, 2015
2 parents 58cecbf + 9e8fa0f commit c525635
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tools/Runtime Condenser/Main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit c525635

Please sign in to comment.