From c9eefc0833d560ad0fd3208caee91f5b207686c5 Mon Sep 17 00:00:00 2001 From: konsti Date: Thu, 18 Apr 2024 15:34:04 +0200 Subject: [PATCH] Reset default `-v` level to debug (#3120) Fixup from https://github.com/astral-sh/uv/pull/2815/files#diff-9b6f8f13cfc3c9d7ef554182fa52c7466fa6037da54a97c03855b6068b481848L127-R127 --- crates/uv/src/logging.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/uv/src/logging.rs b/crates/uv/src/logging.rs index 3ba021d59..47edac78e 100644 --- a/crates/uv/src/logging.rs +++ b/crates/uv/src/logging.rs @@ -123,7 +123,7 @@ pub(crate) fn setup_logging( } Level::Verbose | Level::ExtraVerbose => { // Show `DEBUG` messages from the CLI crate, but allow `RUST_LOG` to override. - Directive::from_str("uv=trace").unwrap() + Directive::from_str("uv=debug").unwrap() } };