diff options
Diffstat (limited to 'cli/util/logger.rs')
-rw-r--r-- | cli/util/logger.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/util/logger.rs b/cli/util/logger.rs index 3cd0cbe5d..f3510c502 100644 --- a/cli/util/logger.rs +++ b/cli/util/logger.rs @@ -41,6 +41,7 @@ pub fn init(maybe_level: Option<log::Level>) { // wgpu crates (gfx_backend), have a lot of useless INFO and WARN logs .filter_module("wgpu", log::LevelFilter::Error) .filter_module("gfx", log::LevelFilter::Error) + .filter_module("globset", log::LevelFilter::Error) // used to make available the lsp_debug which is then filtered out at runtime // in the cli logger .filter_module("deno::lsp::performance", log::LevelFilter::Debug) |