try to prevent optimizer to remove null sink code altogether

This commit is contained in:
gabime 2019-07-17 14:42:26 +03:00
parent fbde18fc02
commit 0cef8f3d26
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ protected:
void sink_it_(const details::log_msg &msg) override
{
// prevent optimizer to remove this sink altogether (and do useful check while at it).
if(msg.level == level::off)
if(msg.level == level::off || this->level() == level::off)
{
printf("null_sink: should never be called if level is off!\n");
abort();