From 7e31dfce4ac88a054af7254dab2c1007d5ed71d8 Mon Sep 17 00:00:00 2001 From: hondacrx Date: Tue, 25 Apr 2023 17:06:39 -0400 Subject: [PATCH] Core/Conditions: Fix log typo Port From (https://github.com/TrinityCore/TrinityCore/commit/0327f3ede31a2ece7b359bcd25c421de8074a730) --- Source/Game/Conditions/ConditionManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Game/Conditions/ConditionManager.cs b/Source/Game/Conditions/ConditionManager.cs index be9819597..abfb321bc 100644 --- a/Source/Game/Conditions/ConditionManager.cs +++ b/Source/Game/Conditions/ConditionManager.cs @@ -803,7 +803,7 @@ namespace Game } } - Log.outError(LogFilter.Sql, "{0} Area {1} does not have phase {2}.", cond.ToString(), cond.SourceGroup, cond.SourceEntry); + Log.outError(LogFilter.Sql, $"{cond} Area {cond.SourceEntry} does not have phase {cond.SourceGroup}."); return false; }