[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:
parent
2a0625f11d
commit
29a9bc9d39
|
|
@ -1922,7 +1922,7 @@ public partial class ServerData
|
||||||
if (itemdata == null)
|
if (itemdata == null)
|
||||||
{
|
{
|
||||||
string errorMessage = $"Item ID {id} not found!";
|
string errorMessage = $"Item ID {id} not found!";
|
||||||
string callStack = Environment.StackTrace;
|
string callStack = System.Environment.StackTrace;
|
||||||
|
|
||||||
// 로그 추가
|
// 로그 추가
|
||||||
var logEntry = new LogEntry(id.ToString(), errorMessage, callStack);
|
var logEntry = new LogEntry(id.ToString(), errorMessage, callStack);
|
||||||
|
|
@ -1995,7 +1995,7 @@ public partial class ServerData
|
||||||
if (itemdata == null)
|
if (itemdata == null)
|
||||||
{
|
{
|
||||||
string errorMessage = $"Item ID {id} not found!";
|
string errorMessage = $"Item ID {id} not found!";
|
||||||
string callStack = Environment.StackTrace;
|
string callStack = System.Environment.StackTrace;
|
||||||
|
|
||||||
// 로그 추가
|
// 로그 추가
|
||||||
var logEntry = new LogEntry(id.ToString(), errorMessage, callStack);
|
var logEntry = new LogEntry(id.ToString(), errorMessage, callStack);
|
||||||
|
|
|
||||||
|
|
@ -101,7 +101,7 @@ public class table_itemlist : table_missionbase
|
||||||
if (!dic_items.ContainsKey(id))
|
if (!dic_items.ContainsKey(id))
|
||||||
{
|
{
|
||||||
string errorMessage = $"Item ID {id} not found!";
|
string errorMessage = $"Item ID {id} not found!";
|
||||||
string callStack = Environment.StackTrace;
|
string callStack = System.Environment.StackTrace;
|
||||||
|
|
||||||
// 로그 추가
|
// 로그 추가
|
||||||
var logEntry = new LogEntry(id.ToString(), errorMessage, callStack);
|
var logEntry = new LogEntry(id.ToString(), errorMessage, callStack);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue