Remove logging

This commit is contained in:
Cj 2024-06-22 01:42:07 -04:00
parent 6381a3b0f8
commit c10e9a6d3e

View File

@ -58,9 +58,6 @@ internal static class TypeDefExtensions
if (type.IsNested == parms.IsNested)
{
score.Score++;
Logger.Log($"Match {type.Name}");
Logger.Log($"Match {parms.IsNested}");
Logger.Log($"type: {type.IsNested} \n");
return EMatchResult.Match;
}
@ -158,7 +155,6 @@ internal static class TypeDefExtensions
if ((bool)!parms.IsPublic && type.IsNotPublic)
{
Logger.Log($"Match {type.Name}");
score.Score++;
return EMatchResult.Match;