fix coverage logging

pull/10758/head
Dustin Lagoy 2025-04-07 12:51:17 -07:00
parent 623e5de848
commit b40aba78e4
2 changed files with 2 additions and 2 deletions

View File

@ -173,7 +173,7 @@ impl From<RawCoverage> for Coverage {
);
break;
}
log::warn!("could not add file {:?} to coverage", path);
log::warn!("could not add file {:?} to coverage", raw_path);
}
}
}

View File

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