Updated messages in the SIGABRT handler.

This commit is contained in:
Gunnar Beutner 2013-02-01 14:46:06 +01:00
parent 6c0a6a2207
commit df1199f206
1 changed files with 6 additions and 0 deletions

View File

@ -310,6 +310,12 @@ void Application::SigAbrtHandler(int signum)
std::cerr << "Caught SIGABRT." << std::endl;
Utility::PrintStacktrace(std::cerr, 1);
std::cerr << "***" << std::endl
<< "*** This would indicate a bug in Icinga 2. Please submit a bug report at https://dev.icinga.org/ and include" << std::endl
<< "*** this stack trace as well as any other information that might be useful in order to reproduce this problem." << std::endl
<< "***" << std::endl
<< std::endl;
}
#else /* _WIN32 */
/**