fix: move a warning to debug in aqua

This commit is contained in:
jdx 2024-11-19 11:12:43 -06:00
parent af36cfd7b8
commit ed029b7c48
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ impl AquaPackage {
if let Some(req) = versions::Requirement::new(&vc) { if let Some(req) = versions::Requirement::new(&vc) {
req.matches(&v) req.matches(&v)
} else { } else {
warn!("invalid semver constraint: {vc}"); debug!("invalid semver constraint: {vc}");
false false
} }
} else if let Some(caps) = re_exact.captures(vc) { } else if let Some(caps) = re_exact.captures(vc) {