LevelFilter

- Now returns a `true` verdict if the incoming `Message` is NOT a kind-of `BasicMessage`
This commit is contained in:
Tristan B. Velloza Kildaire 2024-04-09 19:31:22 +02:00
parent 6be4be3534
commit b29e2eb1c7
1 changed files with 1 additions and 1 deletions

View File

@ -213,7 +213,7 @@ private class LevelFilter : Filter
return bmesg.getLevel() <= *this.level;
}
return false;
return true;
}
}