1
0
Fork 0

Ignore logging messages from selectors

Vizia now spams these.
This commit is contained in:
Robbert van der Helm 2023-11-05 22:31:23 +01:00
parent 5a2ef860b1
commit ba9f979be6

View file

@ -111,7 +111,8 @@ pub fn setup_logger() {
let logger_builder = nih_log::LoggerBuilder::new(log_level) let logger_builder = nih_log::LoggerBuilder::new(log_level)
.filter_module("cosmic_text::buffer") .filter_module("cosmic_text::buffer")
.filter_module("cosmic_text::shape"); .filter_module("cosmic_text::shape")
.filter_module("selectors::matching");
// Always show the module in debug builds, makes it clearer where messages are coming from and // Always show the module in debug builds, makes it clearer where messages are coming from and
// it helps set up filters // it helps set up filters