diff options
author | orvit <cdavis4short@gmail.com> | 2022-07-14 16:52:44 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-15 07:52:44 +1000 |
commit | dbf5e95b59656b05f28218a27d128cae9fd68342 (patch) | |
tree | a5aa4d6cde6f39c2439036eb73243c46d2a6a63e /cli/standalone.rs | |
parent | 1a7259b04b7229f6350a7a7c21b50497b5c80c17 (diff) |
refactor: remove redundant qualification of symbols in Rust (#15201)
Diffstat (limited to 'cli/standalone.rs')
-rw-r--r-- | cli/standalone.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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(), |