fix debug log

This commit is contained in:
Mister_Nebula 2022-01-06 12:16:02 +00:00
parent b1a4b357d5
commit 322dbbda5e

View File

@ -37,6 +37,6 @@ namespace QSB.Utility
private static string GetCallingType(StackTrace frame) =>
frame.GetFrames()!
.Select(x => x.GetMethod().DeclaringType!.Name)
.First(x => x == nameof(DebugLog));
.First(x => x != nameof(DebugLog));
}
}