mirror of
https://github.com/github/codeql-action.git
synced 2026-05-07 22:30:44 +00:00
Reduce log levels for registry connection checks
This commit is contained in:
@@ -110,9 +110,9 @@ export async function checkConnections(
|
||||
result.add(registry);
|
||||
} catch (e) {
|
||||
if (e instanceof ReachabilityError && e.statusCode !== undefined) {
|
||||
logger.error(`Connection test to ${url} failed. (${e.statusCode})`);
|
||||
logger.info(`Connection test to ${url} failed. (${e.statusCode})`);
|
||||
} else {
|
||||
logger.error(
|
||||
logger.warning(
|
||||
`Connection test to ${url} failed: ${getErrorMessage(e)}`,
|
||||
);
|
||||
}
|
||||
@@ -121,7 +121,7 @@ export async function checkConnections(
|
||||
|
||||
logger.debug(`Finished testing connections to private registries.`);
|
||||
} catch (e) {
|
||||
logger.error(
|
||||
logger.warning(
|
||||
`Failed to test connections to private registries: ${getErrorMessage(e)}`,
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user