From dbf5e95b59656b05f28218a27d128cae9fd68342 Mon Sep 17 00:00:00 2001 From: orvit Date: Thu, 14 Jul 2022 16:52:44 -0500 Subject: refactor: remove redundant qualification of symbols in Rust (#15201) --- cli/standalone.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cli/standalone.rs') diff --git a/cli/standalone.rs b/cli/standalone.rs index cd5390d2d..72b9b5ef7 100644 --- a/cli/standalone.rs +++ b/cli/standalone.rs @@ -274,7 +274,7 @@ pub async fn run( cpu_count: std::thread::available_parallelism() .map(|p| p.get()) .unwrap_or(1), - debug_flag: metadata.log_level.map_or(false, |l| l == log::Level::Debug), + debug_flag: metadata.log_level.map_or(false, |l| l == Level::Debug), enable_testing_features: false, location: metadata.location, no_color: !colors::use_color(), -- cgit v1.2.3