changed info color to regular insted of bold

This commit is contained in:
gabime 2017-05-21 02:11:09 +03:00
parent 7bbab6889d
commit 8c240faa7d
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ public:
should_do_colors_ = details::os::in_terminal(file) && details::os::is_color_terminal();
colors_[level::trace] = "\033[36m"; // cyan;
colors_[level::debug] = "\033[36m"; // cyan;
colors_[level::info] = "\033[1m";// bold;
colors_[level::info] = "\033[0m";// bold;
colors_[level::warn] = "\033[33m\033[1m"; // yellow_bold;
colors_[level::err] = "\033[31m\033[1m"; // red_bold;
colors_[level::critical] = "\033[1m\033[41m"; // bold_red_bg;