Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions crates/tower-uv/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ impl Uv {
.arg("--color")
.arg("never")
.arg("--no-progress")
.arg("--quiet")
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably best to have some sort of VERBOSE or DEBUG flag to enable these since this may hide legit relevant problems sometimes...
@bradhe any thoughts?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

But why? I think this is quite useful information actually--helps with debugging and knowing what packages were installed.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm may be I misunderstood this line from the task

We should remove the package information from the logs, it's not useful to our users.

at https://linear.app/towerhq/issue/TOW-1213/improve-logging-in-tower-runner

.arg("sync")
.envs(env_vars);

Expand Down Expand Up @@ -191,6 +192,7 @@ impl Uv {
.current_dir(cwd)
.arg("--color")
.arg("never")
.arg("--quiet")
.arg("pip")
.arg("install")
.arg("-r")
Expand Down
Loading