diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-07-04 20:41:01 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-05 00:41:01 +0000 |
commit | f396b3d1c8aaa7bf40fb1960f9ec81c3708ea2a8 (patch) | |
tree | d86b8190d9273c676063552c478ebf7ae32bd5b1 /cli/util | |
parent | f00f0f92983d6966a5b97e539ec3f3407c3d851f (diff) |
fix(publish): unfurling should always be done with the package json (#24435)
Closes https://github.com/denoland/deno/issues/24430
Diffstat (limited to 'cli/util')
-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) |