From 757ecfaef8c56dcc4ef2aeee3687dea0847b3d1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Saparelli?= Date: Sun, 11 Sep 2022 00:54:31 +1200 Subject: [PATCH] Fix logging that was broken due to lib rename (#371) --- crates/bin/src/ui.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bin/src/ui.rs b/crates/bin/src/ui.rs index 7e6e893a..e2856446 100644 --- a/crates/bin/src/ui.rs +++ b/crates/bin/src/ui.rs @@ -109,7 +109,7 @@ pub fn logging(args: &Args) { let mut log_config = ConfigBuilder::new(); if log_level != LevelFilter::Trace { - log_config.add_filter_allow_str("binstall"); + log_config.add_filter_allow_str("binstalk"); log_config.add_filter_allow_str("cargo_binstall"); }