aboutsummaryrefslogtreecommitdiff
path: root/external/easylogging++
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2023-01-01 10:24:12 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2023-01-01 10:24:46 +0000
commitbfd7c00ced1b376c56cfba5aa36bc5542fcfa3ae (patch)
tree0676e0161c21c9de3cd7d621429dab5af03918d6 /external/easylogging++
parentMerge pull request #8635 (diff)
downloadmonero-bfd7c00ced1b376c56cfba5aa36bc5542fcfa3ae.tar.xz
heed NO_COLOR environment variable
Diffstat (limited to 'external/easylogging++')
-rw-r--r--external/easylogging++/easylogging++.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/external/easylogging++/easylogging++.cc b/external/easylogging++/easylogging++.cc
index a765ee8cc..891936b6b 100644
--- a/external/easylogging++/easylogging++.cc
+++ b/external/easylogging++/easylogging++.cc
@@ -149,6 +149,11 @@ static el::Color colorFromLevel(el::Level level)
static void setConsoleColor(el::Color color, bool bright)
{
+ static const char *no_color_var = getenv("NO_COLOR");
+ static const bool no_color = no_color_var && *no_color_var; // apparently, NO_COLOR=0 means no color too (as per no-color.org)
+ if (no_color)
+ return;
+
#if ELPP_OS_WINDOWS
HANDLE h_stdout = GetStdHandle(STD_OUTPUT_HANDLE);
switch (color)