diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2023-01-01 10:24:12 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2023-01-01 10:24:46 +0000 |
commit | bfd7c00ced1b376c56cfba5aa36bc5542fcfa3ae (patch) | |
tree | 0676e0161c21c9de3cd7d621429dab5af03918d6 /external/easylogging++ | |
parent | Merge pull request #8635 (diff) | |
download | monero-bfd7c00ced1b376c56cfba5aa36bc5542fcfa3ae.tar.xz |
heed NO_COLOR environment variable
Diffstat (limited to 'external/easylogging++')
-rw-r--r-- | external/easylogging++/easylogging++.cc | 5 |
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) |