Commit 216cd693 authored by gabime's avatar gabime

Updated formatter-bench to include source location

parent 3a8f9484
...@@ -28,7 +28,7 @@ void bench_formatter(benchmark::State &state, std::string pattern) ...@@ -28,7 +28,7 @@ void bench_formatter(benchmark::State &state, std::string pattern)
std::string logger_name = "logger-name"; std::string logger_name = "logger-name";
const char *text = "Hello. This is some message with length of 80 "; const char *text = "Hello. This is some message with length of 80 ";
spdlog::details::log_msg msg(&logger_name, spdlog::level::info, text); spdlog::details::log_msg msg(spdlog::source_loc{__FILE__, __LINE__}, &logger_name, spdlog::level::info, text);
// formatter->format(msg, dest); // formatter->format(msg, dest);
// printf("%s\n", fmt::to_string(dest).c_str()); // printf("%s\n", fmt::to_string(dest).c_str());
......
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