From ed36761e2919df2e4ba350dec773efbe2a6306aa Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Mon, 6 May 2019 10:26:35 -0700 Subject: log: Change logging colours TRACE: Remains purple, but that's now no longer bright ERROR: Is now bright red (was non-bold red before) FATAL: Is now red-on-yellow --- host/lib/utils/log.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/host/lib/utils/log.cpp b/host/lib/utils/log.cpp index 125f4699f..5a2af6603 100644 --- a/host/lib/utils/log.cpp +++ b/host/lib/utils/log.cpp @@ -49,11 +49,11 @@ std::string verbosity_color(const uhd::log::severity_level& level) case (uhd::log::info): return GREEN; case (uhd::log::warning): - return YELLOW; + return BYELLOW; case (uhd::log::error): - return RED; - case (uhd::log::fatal): return BRED; + case (uhd::log::fatal): + return RED_ON_YELLOW; default: return RESET_COLORS; } -- cgit v1.2.3