Convert logger call to debug

This commit is contained in:
Henry Mercer 2023-01-13 16:18:46 +00:00
parent 0be20e5ce1
commit 12998b7ba3
2 changed files with 2 additions and 2 deletions

View file

@ -153,7 +153,7 @@ export async function tryFindCliVersionDotcomOnly(
});
return tryGetCodeQLCliVersionForRelease(release.data, logger);
} catch (e) {
logger.error(
logger.debug(
`Failed to find the CLI version for the CodeQL bundle tagged ${tagName}. Error: ${
e instanceof Error ? e.message : e
}`