Open nevf opened 6 years ago
The documentation is out of date but the ability to deny debug
logs should still work.
Currently: filter.deny() will deny the log level specified and below. filter.allow() will allow the log level specified and above.
The code given should work, I've tested it locally and able to deny debug
level logs. Can you post an example of the issue?
The commit https://github.com/mixu/minilog/commit/bcf518bec2ba84a430dd7b23caea32d6b1a5d01c changed the blacklist deny test from < to <= which disagrees with the docs http://mixu.net/minilog/filter.html
I don't understand why this change was made as you can no longer use:
to filter out debug items etc.