mirror of https://github.com/Icinga/icinga2.git
Updated messages in the SIGABRT handler.
This commit is contained in:
parent
6c0a6a2207
commit
df1199f206
|
@ -310,6 +310,12 @@ void Application::SigAbrtHandler(int signum)
|
||||||
std::cerr << "Caught SIGABRT." << std::endl;
|
std::cerr << "Caught SIGABRT." << std::endl;
|
||||||
|
|
||||||
Utility::PrintStacktrace(std::cerr, 1);
|
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 */
|
#else /* _WIN32 */
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue