From 2ae9ea34dd4916e11d5bb6e9d58285f943aea0e4 Mon Sep 17 00:00:00 2001 From: Fries Date: Tue, 13 Sep 2022 20:23:07 -0700 Subject: [PATCH] operations/clean: Remove debug string --- src/operations/clean.rs | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/operations/clean.rs b/src/operations/clean.rs index cc5c2a7..936e218 100644 --- a/src/operations/clean.rs +++ b/src/operations/clean.rs @@ -85,18 +85,6 @@ pub async fn clean(options: Options) { if clear_pacman_cache { let conf = Config::read(); - let mut debug_str = "Clearing using paccache -r".to_string(); - - debug_str = format!("{} -k{}", debug_str, conf.base.paccache_keep); - if conf.base.paccache_keep_ins { - debug_str = format!("{} -u", debug_str); - } - - if quiet { - debug_str = format!("{} -q", debug_str); - } - - tracing::debug!(debug_str); // Clear pacman's cache // keeps 0 versions of the package in the cache by default