From c3b322c5361af922aba29752c2f373a2b8ab19ff Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Tue, 16 Apr 2024 11:59:39 +0200 Subject: [PATCH] Changed Notice color to work for both dark and white backgrounds --- src/utils/Log.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/Log.cpp b/src/utils/Log.cpp index 03ecded8f..54af888ca 100644 --- a/src/utils/Log.cpp +++ b/src/utils/Log.cpp @@ -56,7 +56,7 @@ void Aidge::Log::log(Level level, const std::string& msg) { // the log file. const auto modifier = (level == Debug) ? fmt::fg(fmt::color::gray) - : (level == Notice) ? fmt::fg(fmt::color::light_yellow) + : (level == Notice) ? fmt::fg(fmt::color::medium_purple) : (level == Warn) ? fmt::fg(fmt::color::orange) : (level == Error) ? fmt::fg(fmt::color::red) : (level == Fatal) ? fmt::bg(fmt::color::red) -- GitLab