Skip to content

Commit

Permalink
fix: move semver cmp errors to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Nov 25, 2024
1 parent 2c241cd commit ab4e638
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aqua/aqua_registry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ impl AquaPackage {
true
} else {
expr.eval(&vo.version_constraint, ctx)
.map_err(|e| warn!("error parsing {}: {e}", vo.version_constraint))
.map_err(|e| debug!("error parsing {}: {e}", vo.version_constraint))
.unwrap_or(false.into())
.as_bool()
.unwrap()
Expand Down

0 comments on commit ab4e638

Please sign in to comment.