From 0e0ac9b846e1ba3255ff0e7f3a57aa8747de2b7d Mon Sep 17 00:00:00 2001 From: Conrad Irwin Date: Wed, 11 Jun 2025 14:22:35 -0600 Subject: [PATCH] Hush breakpoint deserialization logs (#32430) Release Notes: - debugger: Remove "Deserializing N breakpoints" from the Zed log --- crates/project/src/debugger/breakpoint_store.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/project/src/debugger/breakpoint_store.rs b/crates/project/src/debugger/breakpoint_store.rs index c39fa43850c8e9e08740b594031adf52032e5ed5..5f3e49f7dd3715752c747d4f39386bddf0103a48 100644 --- a/crates/project/src/debugger/breakpoint_store.rs +++ b/crates/project/src/debugger/breakpoint_store.rs @@ -841,7 +841,7 @@ impl BreakpointStore { } else { "breakpoint" }; - log::info!("Deserialized {count} {breakpoint_str} at path: {path}"); + log::debug!("Deserialized {count} {breakpoint_str} at path: {path}"); } this.breakpoints = new_breakpoints;