mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 05:15:12 +00:00
Include individual path checks in --verbose logging (#3489)
This commit is contained in:
parent
a6e998d639
commit
1e5db58b7b
4 changed files with 6 additions and 7 deletions
|
@ -74,7 +74,7 @@ pub fn lint_path(
|
|||
if let Some(messages) =
|
||||
cache::get(path, package.as_ref(), &metadata, settings, autofix.into())
|
||||
{
|
||||
debug!("Cache hit for: {}", path.to_string_lossy());
|
||||
debug!("Cache hit for: {}", path.display());
|
||||
return Ok(Diagnostics::new(messages));
|
||||
}
|
||||
Some(metadata)
|
||||
|
@ -82,6 +82,8 @@ pub fn lint_path(
|
|||
None
|
||||
};
|
||||
|
||||
debug!("Checking: {}", path.display());
|
||||
|
||||
// Read the file from disk.
|
||||
let contents = std::fs::read_to_string(path)?;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue