[WL-814] 핫픽스: Critter Environment 네임스페이스가 System.Environment 를 가림 → Environment.StackTrace 3줄 System. 명시 (#814)

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
This commit is contained in:
깃 관리자 2026-09-10 23:12:33 +09:00
parent 2a0625f11d
commit 29a9bc9d39
2 changed files with 3 additions and 3 deletions

View File

@ -1922,7 +1922,7 @@ public partial class ServerData
if (itemdata == null)
{
string errorMessage = $"Item ID {id} not found!";
string callStack = Environment.StackTrace;
string callStack = System.Environment.StackTrace;
// 로그 추가
var logEntry = new LogEntry(id.ToString(), errorMessage, callStack);
@ -1995,7 +1995,7 @@ public partial class ServerData
if (itemdata == null)
{
string errorMessage = $"Item ID {id} not found!";
string callStack = Environment.StackTrace;
string callStack = System.Environment.StackTrace;
// 로그 추가
var logEntry = new LogEntry(id.ToString(), errorMessage, callStack);

View File

@ -101,7 +101,7 @@ public class table_itemlist : table_missionbase
if (!dic_items.ContainsKey(id))
{
string errorMessage = $"Item ID {id} not found!";
string callStack = Environment.StackTrace;
string callStack = System.Environment.StackTrace;
// 로그 추가
var logEntry = new LogEntry(id.ToString(), errorMessage, callStack);