Unverified Commit f8f2d7b9 authored by Gabi Melman's avatar Gabi Melman Committed by GitHub

Merge pull request #786 from rajesh-p/v1.x

Namespace fix  for the issue 785
parents 85a2bf1c 769f1110
......@@ -43,11 +43,11 @@ protected:
fmt::memory_buffer formatted;
if (use_raw_msg_)
{
fmt_helper::append_buf(msg.raw, formatted);
details::fmt_helper::append_buf(msg.raw, formatted);
}
else
{
formatter_->format(msg, formatted);
sink::formatter_->format(msg, formatted);
}
formatted.push_back('\0');
const char *msg_output = formatted.data();
......
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