aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--host/lib/utils/log.cpp6
1 files 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;
}