Update pattern_formatter.cpp

This commit is contained in:
Gabi Melman 2023-09-26 02:03:12 +03:00 committed by GitHub
parent 030bcb8890
commit 605f037e4e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,6 +7,7 @@
#include <spdlog/fmt/fmt.h>
#include <spdlog/formatter.h>
#include <spdlog/pattern_formatter.h>
#include <spdlog/common.h>
#include <algorithm>
#include <array>
@ -102,7 +103,7 @@ public:
: flag_formatter(padinfo) {}
void format(const details::log_msg &msg, const std::tm &, memory_buf_t &dest) override {
const string_view_t &level_name = to_string_view(msg.log_level);
auto level_name = to_string_view(msg.log_level);
ScopedPadder p(level_name.size(), padinfo_, dest);
fmt_helper::append_string_view(level_name, dest);
}
@ -116,7 +117,7 @@ public:
: flag_formatter(padinfo) {}
void format(const details::log_msg &msg, const std::tm &, memory_buf_t &dest) override {
auto level_name = to_short_string_view(msg.log_level)};
auto level_name = to_short_string_view(msg.log_level);
ScopedPadder p(level_name.size(), padinfo_, dest);
fmt_helper::append_string_view(level_name, dest);
}