From afcfb3b32ff7ca3964f070f3c455a1081a943ff9 Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Thu, 24 Oct 2019 16:00:17 +0000 Subject: [PATCH] easylogging++: windows does not need terminal colour support --- external/easylogging++/easylogging++.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/external/easylogging++/easylogging++.cc b/external/easylogging++/easylogging++.cc index 0f83e1de2..5c756bcdf 100644 --- a/external/easylogging++/easylogging++.cc +++ b/external/easylogging++/easylogging++.cc @@ -684,7 +684,9 @@ void LogBuilder::convertToColoredOutput(base::type::string_t* logLine, Level lev } void LogBuilder::setColor(Color color, bool bright) { +#if !ELPP_OS_WINDOWS if (m_termSupportsColor) +#endif el::base::utils::setConsoleColor(color, bright); }