Commit 3452892f authored by gabime's avatar gabime

minor renaming

parent 2f7fdf26
...@@ -421,15 +421,15 @@ private: ...@@ -421,15 +421,15 @@ private:
std::string _str; std::string _str;
}; };
// set the color range. expect it to be in the form of "%^colored text%$" // mark the color range. expect it to be in the form of "%^colored text%$"
class start_color_formatter SPDLOG_FINAL : public flag_formatter class color_start_formatter SPDLOG_FINAL : public flag_formatter
{ {
void format(details::log_msg &msg, const std::tm &) override void format(details::log_msg &msg, const std::tm &) override
{ {
msg.color_range_start = msg.formatted.size(); msg.color_range_start = msg.formatted.size();
} }
}; };
class stop_color_formatter SPDLOG_FINAL : public flag_formatter class color_stop_formatter SPDLOG_FINAL : public flag_formatter
{ {
void format(details::log_msg &msg, const std::tm &) override void format(details::log_msg &msg, const std::tm &) override
{ {
...@@ -438,7 +438,6 @@ class stop_color_formatter SPDLOG_FINAL : public flag_formatter ...@@ -438,7 +438,6 @@ class stop_color_formatter SPDLOG_FINAL : public flag_formatter
}; };
// Full info formatter // Full info formatter
// pattern: [%Y-%m-%d %H:%M:%S.%e] [%n] [%l] %v // pattern: [%Y-%m-%d %H:%M:%S.%e] [%n] [%l] %v
class full_formatter SPDLOG_FINAL : public flag_formatter class full_formatter SPDLOG_FINAL : public flag_formatter
{ {
...@@ -667,11 +666,13 @@ inline void spdlog::pattern_formatter::handle_flag(char flag) ...@@ -667,11 +666,13 @@ inline void spdlog::pattern_formatter::handle_flag(char flag)
case ('i'): case ('i'):
_formatters.emplace_back(new details::i_formatter()); _formatters.emplace_back(new details::i_formatter());
break; break;
case ('^'): case ('^'):
_formatters.emplace_back(new details::start_color_formatter()); _formatters.emplace_back(new details::color_start_formatter());
break; break;
case ('$'): case ('$'):
_formatters.emplace_back(new details::stop_color_formatter()); _formatters.emplace_back(new details::color_stop_formatter());
break; break;
default: // Unknown flag appears as is default: // Unknown flag appears as is
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment