mirror of
https://github.com/github/codeql-action
synced 2026-05-25 15:00:36 +03:00
Reduce log levels for registry connection checks
This commit is contained in:
Generated
+3
-3
@@ -122076,9 +122076,9 @@ async function checkConnections(logger, proxy, backend) {
|
||||
result.add(registry);
|
||||
} catch (e) {
|
||||
if (e instanceof ReachabilityError && e.statusCode !== void 0) {
|
||||
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)}`
|
||||
);
|
||||
}
|
||||
@@ -122086,7 +122086,7 @@ async function checkConnections(logger, proxy, backend) {
|
||||
}
|
||||
logger.debug(`Finished testing connections to private registries.`);
|
||||
} catch (e) {
|
||||
logger.error(
|
||||
logger.warning(
|
||||
`Failed to test connections to private registries: ${getErrorMessage(e)}`
|
||||
);
|
||||
}
|
||||
|
||||
@@ -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