mirror of
https://github.com/astral-sh/uv.git
synced 2025-11-03 05:03:46 +00:00
Include both installed and request in satisfied logging (#10100)
This commit is contained in:
parent
38a38fa8e2
commit
0e836bcbbc
1 changed files with 1 additions and 1 deletions
|
|
@ -87,7 +87,7 @@ impl<'a> Planner<'a> {
|
|||
let source = RequirementSource::from(dist);
|
||||
match RequirementSatisfaction::check(installed, &source)? {
|
||||
RequirementSatisfaction::Mismatch => {
|
||||
debug!("Requirement installed, but mismatched: {installed:?}");
|
||||
debug!("Requirement installed, but mismatched:\n Installed: {installed:?}\n Requested: {source:?}");
|
||||
}
|
||||
RequirementSatisfaction::Satisfied => {
|
||||
debug!("Requirement already installed: {installed}");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue