Skip to content
Snippets Groups Projects
Unverified Commit 08764fa5 authored by Rhys Arkins's avatar Rhys Arkins Committed by GitHub
Browse files

fix(versioning/hashicorp): don’t debug for invalid versioning (#19767)

parent 190753a7
No related branches found
No related tags found
No related merge requests found
...@@ -26,7 +26,7 @@ export function isValid(input: string): boolean { ...@@ -26,7 +26,7 @@ export function isValid(input: string): boolean {
try { try {
return npm.isValid(hashicorp2npm(input)); return npm.isValid(hashicorp2npm(input));
} catch (err) { } catch (err) {
logger.debug({ value: input }, 'Unsupported hashicorp versioning value'); logger.trace({ value: input }, 'Unsupported hashicorp versioning value');
return false; return false;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment