feat : 코드 주석 정리

This commit is contained in:
qornwh1
2026-03-30 12:47:36 +09:00
parent 849105f8ff
commit 2ebd0120ab
2 changed files with 11 additions and 17 deletions

View File

@@ -36,8 +36,6 @@ public static class CrashDumpHandler
Log.Information("[CrashDump] 핸들러 등록 완료 (CrashDir={Dir})", Path.GetFullPath(CRASH_DIR));
}
// ─── 핸들러 ──────────────────────────────────────────────────────────
private static void OnUnhandledException(object sender, UnhandledExceptionEventArgs e)
{
Exception? ex = e.ExceptionObject as Exception;
@@ -52,8 +50,6 @@ public static class CrashDumpHandler
WriteCrash(tag, e.Exception);
}
// ─── 핵심 처리 ───────────────────────────────────────────────────────
private static void WriteCrash(string tag, Exception? ex)
{
try