X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6721094a6e5bc535c446266801f713c9e99ac968..3f4f5e63dadc0023c0a02a08af8e9e9801b38e8e:/src/xbt/exception.cpp diff --git a/src/xbt/exception.cpp b/src/xbt/exception.cpp index 51e9649d72..e4d1755bef 100644 --- a/src/xbt/exception.cpp +++ b/src/xbt/exception.cpp @@ -35,9 +35,9 @@ void log_exception(e_xbt_log_priority_t prio, const char* context, std::exceptio try { std::string name = boost::core::demangle(typeid(exception).name()); - auto* with_context = dynamic_cast(&exception); + const auto* with_context = dynamic_cast(&exception); if (with_context != nullptr) { - XBT_LOG(prio, "%s %s by %s/%d: %s", context, name.c_str(), with_context->throw_point().procname_.c_str(), + XBT_LOG(prio, "%s %s by %s/%ld: %s", context, name.c_str(), with_context->throw_point().procname_.c_str(), with_context->throw_point().pid_, exception.what()); // Do we have a backtrace? if (not simgrid::config::get_value("exception/cutpath")) { @@ -54,7 +54,7 @@ void log_exception(e_xbt_log_priority_t prio, const char* context, std::exceptio try { // Do we have a nested exception? - auto* with_nested = dynamic_cast(&exception); + const auto* with_nested = dynamic_cast(&exception); if (with_nested != nullptr && with_nested->nested_ptr() != nullptr) with_nested->rethrow_nested(); } catch (const std::exception& nested_exception) {