From 7868d5df95a3090a2d2cafddeac874e68aac6b9b Mon Sep 17 00:00:00 2001 From: Victorien <65306057+Viicos@users.noreply.github.com> Date: Wed, 29 Jan 2025 00:31:10 +0100 Subject: [PATCH] Fix formatting of `RUST_LOG` documentation (#10053) ## Summary ## Test Plan --- crates/uv-static/src/env_vars.rs | 1 + docs/configuration/environment.md | 1 + 2 files changed, 2 insertions(+) diff --git a/crates/uv-static/src/env_vars.rs b/crates/uv-static/src/env_vars.rs index 9fabccaac..8db9a3595 100644 --- a/crates/uv-static/src/env_vars.rs +++ b/crates/uv-static/src/env_vars.rs @@ -516,6 +516,7 @@ impl EnvVars { /// any filter compatible with the `tracing_subscriber` crate. /// /// For example: + /// /// * `RUST_LOG=uv=debug` is the equivalent of adding `--verbose` to the command line /// * `RUST_LOG=trace` will enable trace-level logging. /// diff --git a/docs/configuration/environment.md b/docs/configuration/environment.md index 21bf56b01..46cd28950 100644 --- a/docs/configuration/environment.md +++ b/docs/configuration/environment.md @@ -496,6 +496,7 @@ If set, uv will use this value as the log level for its `--verbose` output. Acce any filter compatible with the `tracing_subscriber` crate. For example: + * `RUST_LOG=uv=debug` is the equivalent of adding `--verbose` to the command line * `RUST_LOG=trace` will enable trace-level logging.