From e5be396cb83d06f4219c44fe633bab933d513269 Mon Sep 17 00:00:00 2001 From: Lacyway <20912169+Lacyway@users.noreply.github.com> Date: Fri, 20 Dec 2024 20:50:10 +0100 Subject: [PATCH] Change log to info --- .../Patches/RaidFix/OverrideMaxAiAliveInRaidValuePatch.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/SPT.SinglePlayer/Patches/RaidFix/OverrideMaxAiAliveInRaidValuePatch.cs b/project/SPT.SinglePlayer/Patches/RaidFix/OverrideMaxAiAliveInRaidValuePatch.cs index ebaca7e..bb139fd 100644 --- a/project/SPT.SinglePlayer/Patches/RaidFix/OverrideMaxAiAliveInRaidValuePatch.cs +++ b/project/SPT.SinglePlayer/Patches/RaidFix/OverrideMaxAiAliveInRaidValuePatch.cs @@ -37,7 +37,7 @@ namespace SPT.SinglePlayer.Patches.RaidFix if (int.TryParse(RequestHandler.GetJson($"/singleplayer/settings/bot/maxCap/{location}"), out var parsedMaxCount)) { - Logger.LogError($"Set max bot cap for: {location} from: {maxCount} to: {parsedMaxCount}"); + Logger.LogInfo($"Set max bot cap for: {location} from: {maxCount} to: {parsedMaxCount}"); maxCount = parsedMaxCount; } else