mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-27 07:08:00 +01:00
Merge pull request #12446 from duncathan/patch-1
makes the condensed hard del logs less spammy
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user