From 791008bcd69f5eb1977b84cb7278771d6016aacc Mon Sep 17 00:00:00 2001 From: Vim Wickramasinghe Date: Thu, 11 Dec 2025 16:12:18 +0100 Subject: [PATCH] [TOW-1213] Remove the package information from the logs --- crates/tower-uv/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/tower-uv/src/lib.rs b/crates/tower-uv/src/lib.rs index f625307f..3320f25e 100644 --- a/crates/tower-uv/src/lib.rs +++ b/crates/tower-uv/src/lib.rs @@ -161,6 +161,7 @@ impl Uv { .arg("--color") .arg("never") .arg("--no-progress") + .arg("--quiet") .arg("sync") .envs(env_vars); @@ -191,6 +192,7 @@ impl Uv { .current_dir(cwd) .arg("--color") .arg("never") + .arg("--quiet") .arg("pip") .arg("install") .arg("-r")