From d705b6119a9064447482738c8c226a0d624a8f84 Mon Sep 17 00:00:00 2001 From: Cj <161484149+CJ-SPT@users.noreply.github.com> Date: Tue, 12 Aug 2025 11:52:33 -0400 Subject: [PATCH] Fix incomplete error text --- Libraries/SPTarkov.Server.Core/Helpers/HideoutHelper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/SPTarkov.Server.Core/Helpers/HideoutHelper.cs b/Libraries/SPTarkov.Server.Core/Helpers/HideoutHelper.cs index e06b1cbd..cb400688 100644 --- a/Libraries/SPTarkov.Server.Core/Helpers/HideoutHelper.cs +++ b/Libraries/SPTarkov.Server.Core/Helpers/HideoutHelper.cs @@ -1471,7 +1471,7 @@ public class HideoutHelper( var combatBonusProfile = pmcData.Bonuses?.FirstOrDefault(bonus => bonus.Id == combatBoostBonusDb?.Id); if (combatBonusProfile is null) { - logger.Error("Could not locate: "); + logger.Error($"Could not locate SkillGroupLevelingBoost: {combatBoostBonusDb?.Id.ToString() ?? "`Id is null`"} in profile"); return; }