From b40aba78e46a6dcce2369435055e5ed0b765f87b Mon Sep 17 00:00:00 2001 From: Dustin Lagoy Date: Mon, 7 Apr 2025 12:51:17 -0700 Subject: [PATCH] fix coverage logging --- helix-view/src/coverage.rs | 2 +- helix-view/src/gutter.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/helix-view/src/coverage.rs b/helix-view/src/coverage.rs index 34158090d..fbe57932a 100644 --- a/helix-view/src/coverage.rs +++ b/helix-view/src/coverage.rs @@ -173,7 +173,7 @@ impl From for Coverage { ); break; } - log::warn!("could not add file {:?} to coverage", path); + log::warn!("could not add file {:?} to coverage", raw_path); } } } diff --git a/helix-view/src/gutter.rs b/helix-view/src/gutter.rs index bef8ca184..1d8cf9a54 100644 --- a/helix-view/src/gutter.rs +++ b/helix-view/src/gutter.rs @@ -172,7 +172,7 @@ pub fn coverage<'doc>( ); } } - log::info!("return empty coverage gutter for {:?}", document_path); + log::info!("return empty coverage gutter"); return Box::new(move |_, _, _, _| None); }