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); }