You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Console.WriteLine("Excised {0:0.00}% of server only code in file ({1}/{2}): {3}",excisionRatio,fileIdx+1,allFiles.Length,fileName);
118
+
Console.WriteLine($"[{fileIdx+1}/{allFiles.Length}] Excised {excisionRatio:0.00}% of server only code in file (took {stopwatch.Elapsed.TotalMilliseconds:0.0}ms): {fileName}");
116
119
}
117
120
else
118
121
{
119
-
Console.WriteLine("No server only code found in file ({0}/{1}): {2}",fileIdx+1,allFiles.Length,fileName);
122
+
Console.WriteLine($"[{fileIdx+1}/{allFiles.Length}] No server only code found in file: {fileName}");
0 commit comments