From f396b3d1c8aaa7bf40fb1960f9ec81c3708ea2a8 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Thu, 4 Jul 2024 20:41:01 -0400 Subject: fix(publish): unfurling should always be done with the package json (#24435) Closes https://github.com/denoland/deno/issues/24430 --- cli/util/logger.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'cli/util') 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) { // 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) -- cgit v1.2.3