mirror of
https://github.com/oldmud0/LilithPort.git
synced 2024-11-21 14:16:16 +01:00
Write exception during loading to log
This commit is contained in:
parent
c07a0536a2
commit
89db2a0505
1 changed files with 2 additions and 0 deletions
|
@ -442,6 +442,7 @@ namespace LilithPort {
|
|||
textBoxWelcome->Text = gcnew String(MTOPTION.WELCOME);
|
||||
}
|
||||
catch (Exception^ e) {
|
||||
WriteErrorLog(e->ToString(), "StartupForm_Load");
|
||||
error = true;
|
||||
}
|
||||
|
||||
|
@ -454,6 +455,7 @@ namespace LilithPort {
|
|||
numericUpDownOpenPort->Value = 7500;
|
||||
numericUpDownOpenPort->Value = 7500;
|
||||
numericUpDownMaxConnection->Value = 4;
|
||||
WriteErrorLog(e->ToString(), "StartupForm_Load");
|
||||
error = true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue