Commit 1084494e authored by Gabi Melman's avatar Gabi Melman

Merge pull request #95 from gnzlbg/fix_simple_file_sink

adds missing flush override to simple_file_sink
parents 8208b492 fbd9d924
......@@ -47,6 +47,10 @@ public:
{
_file_helper.open(filename);
}
void flush() override
{
_file_helper.flush();
}
protected:
void _sink_it(const details::log_msg& msg) override
......
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