Add context traces to most exceptions

fixes 
This commit is contained in:
Gunnar Beutner 2016-08-30 20:12:35 +02:00
parent 68dceaab06
commit 8c50c6f91f
1 changed files with 5 additions and 1 deletions

View File

@ -243,7 +243,11 @@ String icinga::DiagnosticInformation(const std::exception& ex, bool verbose, Sta
}
}
if (boost::get_error_info<ContextTraceErrorInfo>(ex) == NULL) {
const ContextTrace *ct = boost::get_error_info<ContextTraceErrorInfo>(ex);
if (ct) {
result << *ct;
} else {
result << std::endl;
if (!context)