diff --git a/QSB/Utility/DebugLog.cs b/QSB/Utility/DebugLog.cs index d5b38c70..c224f904 100644 --- a/QSB/Utility/DebugLog.cs +++ b/QSB/Utility/DebugLog.cs @@ -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)); } } \ No newline at end of file