Skip to content

Commit

Permalink
LevelFilter
Browse files Browse the repository at this point in the history
- Now returns a `true` verdict if the incoming `Message` is NOT a kind-of `BasicMessage`
  • Loading branch information
deavmi committed Apr 9, 2024
1 parent 6be4be3 commit b29e2eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/dlog/basic.d
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ private class LevelFilter : Filter
return bmesg.getLevel() <= *this.level;
}

return false;
return true;
}
}

Expand Down

0 comments on commit b29e2eb

Please sign in to comment.