adds missing flush override to simple_file_sink

pull/95/head
gnzlbg 10 years ago
parent 8208b49298
commit fbd9d924d6

@ -47,6 +47,10 @@ public:
{ {
_file_helper.open(filename); _file_helper.open(filename);
} }
void flush() override
{
_file_helper.flush();
}
protected: protected:
void _sink_it(const details::log_msg& msg) override void _sink_it(const details::log_msg& msg) override

Loading…
Cancel
Save