From e3806f23aa223cf9c520eb23c549c8db9ecce92a Mon Sep 17 00:00:00 2001 From: NTG_DESKTOP Date: Mon, 28 Jul 2025 04:50:34 +0900 Subject: [PATCH] =?UTF-8?q?=EB=94=94=EB=B2=84=EA=B7=B8=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../_Scripts/GameFramework/Localization/LocalizationManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/_DDD/_Scripts/GameFramework/Localization/LocalizationManager.cs b/Assets/_DDD/_Scripts/GameFramework/Localization/LocalizationManager.cs index e7dcb31b2..ce5b2c0b8 100644 --- a/Assets/_DDD/_Scripts/GameFramework/Localization/LocalizationManager.cs +++ b/Assets/_DDD/_Scripts/GameFramework/Localization/LocalizationManager.cs @@ -81,7 +81,7 @@ public LocalizedString GetLocalizedString(string key) if (_localizedCache.TryGetValue(key, out var value)) return value; - Debug.LogError("[LocalizationManager] key값이 존재하지 않습니다."); + Debug.LogError($"[LocalizationManager] {key}값이 존재하지 않습니다."); return null; }