-
Notifications
You must be signed in to change notification settings - Fork 878
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use -v
, -vv
, -vvv
to configure tracing levels
#1569
Comments
I may be missing something, but related to this, it would be great if the I'd like to be able to see the uv/crates/uv-client/src/cached_client.rs Line 389 in 3b70b42
could be logged? |
You can control the log level during verbose mode with e.g. I totally agree though. |
Thanks for the tip! Actually, that failed when running I'd suggest adding it to |
<!-- Thank you for contributing to uv! To help us out with reviewing, please consider the following: - Does this pull request include a summary of the change? (See below.) - Does this pull request include a descriptive title? - Does this pull request include references to any relevant issues? --> ## Summary This improves Contributing documentation to specifically mention `trace` level logging can be obtained via `RUST_LOG=trace uv …` as mentioned here: #1569 (comment) ## Test Plan Compare the output of ``` uv pip install --verbose requests ``` and ``` RUST_LOG=trace uv pip install --verbose requests ```
The |
Right now, as mentioned in #1567, we show a lot of output in
-v
.We should have
-v
be more user friendly and use-vv
and-vvv
to dump more verbose tracing information.The text was updated successfully, but these errors were encountered: