mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-03 18:38:21 +00:00
Change debug!
back to trace!
in filtering (#6117)
## Summary I changed this for debugging and forgot to revert. Not awful but probably a little much for `debug!`.
This commit is contained in:
parent
4d13b525ef
commit
3ee865831f
1 changed files with 4 additions and 4 deletions
|
@ -1520,7 +1520,7 @@ impl<InstalledPackages: InstalledPackagesProvider> ResolverState<InstalledPackag
|
|||
);
|
||||
|
||||
if marker.is_false() {
|
||||
debug!("skipping {requirement} because of Requires-Python: {requires_python}");
|
||||
trace!("skipping {requirement} because of Requires-Python: {requires_python}");
|
||||
return None;
|
||||
}
|
||||
|
||||
|
@ -1543,7 +1543,7 @@ impl<InstalledPackages: InstalledPackagesProvider> ResolverState<InstalledPackag
|
|||
// this fork (but will be part of another fork).
|
||||
if let ResolverMarkers::Fork(markers) = markers {
|
||||
if markers.is_disjoint(&requirement.marker) {
|
||||
debug!("skipping {requirement} because of context resolver markers {markers:?}");
|
||||
trace!("skipping {requirement} because of context resolver markers {markers:?}");
|
||||
return None;
|
||||
}
|
||||
}
|
||||
|
@ -1591,7 +1591,7 @@ impl<InstalledPackages: InstalledPackagesProvider> ResolverState<InstalledPackag
|
|||
// and the constraint is `requests ; python_version == '3.6'`, the
|
||||
// constraint should only apply when _both_ markers are true.
|
||||
if marker.is_false() {
|
||||
debug!("skipping {constraint} because of Requires-Python: {requires_python}");
|
||||
trace!("skipping {constraint} because of Requires-Python: {requires_python}");
|
||||
return None;
|
||||
}
|
||||
|
||||
|
@ -1630,7 +1630,7 @@ impl<InstalledPackages: InstalledPackagesProvider> ResolverState<InstalledPackag
|
|||
// this fork (but will be part of another fork).
|
||||
if let ResolverMarkers::Fork(markers) = markers {
|
||||
if markers.is_disjoint(&constraint.marker) {
|
||||
debug!("skipping {constraint} because of context resolver markers {markers:?}");
|
||||
trace!("skipping {constraint} because of context resolver markers {markers:?}");
|
||||
return None;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue