fix issue accessing the wrong logger

This commit is contained in:
RaidMax 2019-12-29 17:07:00 -06:00
parent a7620ffd50
commit 7bfadca84d

View File

@ -587,8 +587,8 @@ namespace IW4MAdmin
catch (Exception e)
{
origin.CurrentServer.Logger.WriteWarning($"Could not execute on join for {origin}");
origin.CurrentServer.Logger.WriteDebug(e.GetExceptionInfo());
Logger.WriteWarning($"Could not execute on join for {origin}");
Logger.WriteDebug(e.GetExceptionInfo());
}
}
}