mirror of
https://github.com/gabime/spdlog.git
synced 2024-12-26 18:41:35 +08:00
fix issue #755
This commit is contained in:
parent
07928109af
commit
b238bf9512
@ -27,8 +27,11 @@ public:
|
|||||||
explicit msvc_sink() {}
|
explicit msvc_sink() {}
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void sink_it_(const details::log_msg &, const fmt::memory_buffer &formatted) override
|
void sink_it_(const details::log_msg &msg) override
|
||||||
{
|
{
|
||||||
|
|
||||||
|
fmt::memory_buffer formatted;
|
||||||
|
sink::formatter_->format(msg, formatted);
|
||||||
OutputDebugStringA(fmt::to_string(formatted).c_str());
|
OutputDebugStringA(fmt::to_string(formatted).c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user