Skip to content

Commit

Permalink
fix(versioning/hashicorp): don’t debug for invalid versioning (#19767)
Browse files Browse the repository at this point in the history
  • Loading branch information
rarkins committed Jan 10, 2023
1 parent 190753a commit 08764fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/modules/versioning/hashicorp/index.ts
Expand Up @@ -26,7 +26,7 @@ export function isValid(input: string): boolean {
try {
return npm.isValid(hashicorp2npm(input));
} catch (err) {
logger.debug({ value: input }, 'Unsupported hashicorp versioning value');
logger.trace({ value: input }, 'Unsupported hashicorp versioning value');
return false;
}
}
Expand Down

0 comments on commit 08764fa

Please sign in to comment.