Improve debug log version display (#403)

Follow-up to https://github.com/astral-sh/puffin/pull/346 for some debug
messages
This commit is contained in:
Zanie Blue
2023-11-10 17:07:29 -06:00
committed by GitHub
parent 06b312de7e
commit beadd3274a
+2 -2
View File
@@ -457,7 +457,7 @@ impl<'a, Context: BuildContext + Sync> Resolver<'a, Context> {
)?;
for (package, version) in constraints.iter() {
debug!("Adding direct dependency: {package:?} {version:?}");
debug!("Adding direct dependency: {package}{version}");
// Emit a request to fetch the metadata for this package.
Self::visit_package(package, priorities, in_flight, request_sink)?;
@@ -496,7 +496,7 @@ impl<'a, Context: BuildContext + Sync> Resolver<'a, Context> {
)?;
for (package, version) in constraints.iter() {
debug!("Adding transitive dependency: {package} {version}");
debug!("Adding transitive dependency: {package}{version}");
// Emit a request to fetch the metadata for this package.
Self::visit_package(package, priorities, in_flight, request_sink)?;