adds missing flush override to simple_file_sink

This commit is contained in:
gnzlbg 2015-05-11 10:17:55 +02:00
parent 8208b49298
commit fbd9d924d6
1 changed files with 4 additions and 0 deletions

View File

@ -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