diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-01-16 23:30:57 +0100 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-01-16 23:30:57 +0100 |
commit | d675173b80e08fba4a0aa2b06b9c33713581b922 (patch) | |
tree | 6049c49af5c0004677dd132f4df9061d738fd471 /src/main.cpp | |
parent | Removed CustomCopy() (diff) | |
download | cuberite-d675173b80e08fba4a0aa2b06b9c33713581b922.tar cuberite-d675173b80e08fba4a0aa2b06b9c33713581b922.tar.gz cuberite-d675173b80e08fba4a0aa2b06b9c33713581b922.tar.bz2 cuberite-d675173b80e08fba4a0aa2b06b9c33713581b922.tar.lz cuberite-d675173b80e08fba4a0aa2b06b9c33713581b922.tar.xz cuberite-d675173b80e08fba4a0aa2b06b9c33713581b922.tar.zst cuberite-d675173b80e08fba4a0aa2b06b9c33713581b922.zip |
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 0620e0f0e..94e2388d6 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -47,9 +47,18 @@ void NonCtrlHandler(int a_Signal) case SIGSEGV: { std::signal(SIGSEGV, SIG_DFL); - LOGWARN("Segmentation fault; MCServer has crashed :("); + LOGERROR(" D: | MCServer has encountered an error and needs to close"); + LOGERROR("Details | SIGSEGV: Segmentation fault"); exit(EXIT_FAILURE); } + case SIGABRT: + case SIGABRT_COMPAT: + { + std::signal(a_Signal, SIG_DFL); + LOGERROR(" D: | MCServer has encountered an error and needs to close"); + LOGERROR("Details | SIGABRT: Server self-terminated due to an internal fault"); + break; + } case SIGTERM: { std::signal(SIGTERM, SIG_IGN); // Server is shutting down, wait for it... |