diff options
author | Julian Andres Klode <julian.klode@canonical.com> | 2024-04-15 16:48:16 +0200 |
---|---|---|
committer | Julian Andres Klode <julian.klode@canonical.com> | 2024-04-19 19:21:36 +0200 |
commit | 760d7d3aa5ac414f05e381e0984430544b1f42d9 (patch) | |
tree | 2dbc22a0fa09e702c3267eb42f531031f0788425 | |
parent | 70103339b017a42ea71a56c27c221a79ccc3116f (diff) |
Render notices without (yellow) color, just in bold
Yellow is a bit odd for notices.
-rw-r--r-- | apt-pkg/contrib/error.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/contrib/error.cc b/apt-pkg/contrib/error.cc index c9bb622e7..2cb1191c1 100644 --- a/apt-pkg/contrib/error.cc +++ b/apt-pkg/contrib/error.cc @@ -252,7 +252,7 @@ void GlobalError::MergeWithStack() { APT_HIDDEN std::ostream &operator<<(std::ostream &out, GlobalError::Item i) { static constexpr auto COLOR_RESET = "\033[0m"; - static constexpr auto COLOR_NOTICE = "\033[33m"; // normal yellow + static constexpr auto COLOR_NOTICE = "\033[1m"; // bold neutral static constexpr auto COLOR_WARN = "\033[1;33m"; // bold yellow static constexpr auto COLOR_ERROR = "\033[1;31m"; // bold red |