1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-13 00:28:10 -05:00

prevent exiting immediately on error. updated mvc packages

This commit is contained in:
RaidMax
2018-03-13 19:12:24 -05:00
parent ae4fa23884
commit c3d5f6ac26
6 changed files with 21 additions and 18 deletions

View File

@ -134,6 +134,9 @@ namespace IW4MAdmin
Logger.WriteDebug(e.Message);
Logger.WriteDebug($"Internal Exception: {e.Data["internal_exception"]}");
}
// throw the exception to the main method to stop before instantly exiting
throw e;
}
}