Skip to content

Commit

Permalink
Remove debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
jasal82 committed Jun 17, 2024
1 parent 887511c commit 706b799
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions metabuild-resolver/src/inventory.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,11 +192,9 @@ impl Inventory {

for module in self.index.get_packages()? {
let location_info = self.index.get_package_location(&module)?;
println!("Fetching module {module}");
let metadata_retriever = self.make_metadata_retriever(module, location_info)?;
let versions = metadata_retriever.fetch_versions()?;
for ref version in versions {
println!("Trying version {version}");
let download_manifest = match self.index_cache.get(module) {
Some(inner_map) => !inner_map.contains_key(&Version::from_str(&version)?),
None => true,
Expand Down

0 comments on commit 706b799

Please sign in to comment.