Extract logging statements to separate function

This commit is contained in:
Andrew Eisenberg 2022-10-03 08:17:27 -07:00
parent 59fbe34861
commit 5960ce1190
9 changed files with 35 additions and 30 deletions

View file

@ -24,6 +24,7 @@ import {
codeQlVersionAbove,
getMlPoweredJsQueriesPack,
GitHubVersion,
logCodeScanningConfigInCli,
ML_POWERED_JS_QUERIES_PACK_NAME,
useCodeScanningConfigInCli,
} from "./util";
@ -1704,10 +1705,9 @@ export async function initConfig(
// When using the codescanning config in the CLI, pack downloads
// happen in the CLI during the `database init` command, so no need
// to download them here.
await logCodeScanningConfigInCli(codeQL, featureFlags, logger);
if (!(await useCodeScanningConfigInCli(codeQL, featureFlags))) {
logger.info(
"Code Scanning configuration file being processed in the codeql CLI."
);
const registries = parseRegistries(registriesInput);
await downloadPacks(
codeQL,
@ -1718,10 +1718,6 @@ export async function initConfig(
config.tempDir,
logger
);
} else {
logger.info(
"Code Scanning configuration file being processed in the codeql-action."
);
}
// Save the config so we can easily access it again in the future