From 47998d6df73c8c82ce51e84759cbbd85f73da167 Mon Sep 17 00:00:00 2001 From: Felix Schindler <felix.schindler@wwu.de> Date: Thu, 22 May 2014 18:37:17 +0200 Subject: [PATCH] [common.exception] use different coloring for a better highlight --- dune/stuff/common/exceptions.hh | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/dune/stuff/common/exceptions.hh b/dune/stuff/common/exceptions.hh index 3a16b1c11..0f1e4e5fc 100644 --- a/dune/stuff/common/exceptions.hh +++ b/dune/stuff/common/exceptions.hh @@ -28,6 +28,7 @@ if (a.size() != b.size()) #define DUNE_THROW_COLORFULLY(E, m) \ do { \ const std::string red = "\033[31m"; \ + const std::string brown = "\033[33m"; \ const std::string clear = "\033[0m"; \ E th__ex; \ std::ostringstream th__msg; \ @@ -37,12 +38,12 @@ if (a.size() != b.size()) if (Dune::MPIHelper::getCollectiveCommunication().size() > 1) \ th__out << " (on rank " << Dune::MPIHelper::getCollectiveCommunication().rank() << ")"; \ th__out << "\n"; \ - th__out << red << "[" << clear; \ - th__out << __func__; \ - th__out << red << "|" << clear; \ - th__out << __FILE__ << red << ":" << __LINE__ << "]" << clear; \ + th__out << brown << "[" << clear; \ + th__out << red << __func__ << clear; \ + th__out << brown << "|" << clear; \ + th__out << __FILE__ << brown << ":" << clear << red << __LINE__ << clear << brown << "]" << clear; \ if (!th__msg.str().empty()) \ - th__out << "\n" << red << "=>" << clear << " " << th__msg.str(); \ + th__out << "\n" << brown << "=>" << clear << " " << th__msg.str(); \ th__ex.message(th__out.str()); \ throw th__ex; \ } while (0) -- GitLab