1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-02-21 20:27:13 +01:00

Don't catch application exceptions in the outer most event functions because they probably left the VM stack in an invalid state and the server should be allowed to crash.

This commit is contained in:
Sandu Liviu Catalin 2016-08-26 17:21:05 +03:00
parent 5d518ef479
commit a9ae69ce5e

View File

@ -68,14 +68,6 @@ void DoReload()
*/ LogErr("Squirrel exception caught (" #ev ") event"); /*
*/ Logger::Get().Debug("%s", e.what()); /*
*/ } /*
*/ catch (const std::exception & e) /*
*/ { /*
*/ LogErr("Program exception caught (" #ev ") event [%s]", e.what()); /*
*/ } /*
*/ catch (...) /*
*/ { /*
*/ LogErr("Unknown exception caught (" #ev ") event"); /*
*/ } /*
*/
// --------------------------------------------------------------------------------------------