휴가 신청 삭제시 로그파일에 기록되도록 함
This commit is contained in:
@@ -103,8 +103,8 @@ namespace Project
|
||||
static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
|
||||
{
|
||||
string emsg = "Fatal Error(UHE)\n\n" + e.ExceptionObject.ToString();
|
||||
Pub.log.AddE(emsg);
|
||||
Pub.log.Flush();
|
||||
FCOMMON.Pub.log.AddE(emsg);
|
||||
FCOMMON.Pub.log.Flush();
|
||||
Util.SaveBugReport(emsg);
|
||||
var f = new fErrorException(emsg);
|
||||
f.ShowDialog();
|
||||
@@ -114,8 +114,8 @@ namespace Project
|
||||
static void Application_ThreadException(object sender, System.Threading.ThreadExceptionEventArgs e)
|
||||
{
|
||||
string emsg = "Fatal Error(ATE)\n\n" + e.Exception.ToString();
|
||||
Pub.log.AddE(emsg);
|
||||
Pub.log.Flush();
|
||||
FCOMMON.Pub.log.AddE(emsg);
|
||||
FCOMMON.Pub.log.Flush();
|
||||
Util.SaveBugReport(emsg);
|
||||
var f = new fErrorException(emsg);
|
||||
f.ShowDialog();
|
||||
|
||||
Reference in New Issue
Block a user