Change log levels

This commit is contained in:
Koen Vlaswinkel 2024-03-25 10:08:50 +01:00
parent a0a63a2dd4
commit 3c4b8bc120
3 changed files with 5 additions and 5 deletions

4
lib/upload-lib.js generated
View file

@ -92,7 +92,7 @@ async function combineSarifFilesUsingCLI(sarifFiles, gitHubVersion, features, lo
return JSON.parse(fs.readFileSync(sarifFiles[0], "utf8"));
}
if (!areAllRunsProducedByCodeQL(sarifFiles)) {
logger.warning("Not all SARIF files were produced by CodeQL. Merging files in the action.");
logger.debug("Not all SARIF files were produced by CodeQL. Merging files in the action.");
// If not, use the naive method of combining the files.
return combineSarifFiles(sarifFiles);
}
@ -106,7 +106,7 @@ async function combineSarifFilesUsingCLI(sarifFiles, gitHubVersion, features, lo
tempDir = config.tempDir;
}
else {
logger.warning("Initializing CodeQL since the 'init' Action was not called before this step.");
logger.info("Initializing CodeQL since the 'init' Action was not called before this step.");
const apiDetails = {
auth: (0, actions_util_1.getRequiredInput)("token"),
externalRepoAuth: (0, actions_util_1.getOptionalInput)("external-repository-token"),

File diff suppressed because one or more lines are too long

View file

@ -98,7 +98,7 @@ async function combineSarifFilesUsingCLI(
}
if (!areAllRunsProducedByCodeQL(sarifFiles)) {
logger.warning(
logger.debug(
"Not all SARIF files were produced by CodeQL. Merging files in the action.",
);
@ -116,7 +116,7 @@ async function combineSarifFilesUsingCLI(
codeQL = await getCodeQL(config.codeQLCmd);
tempDir = config.tempDir;
} else {
logger.warning(
logger.info(
"Initializing CodeQL since the 'init' Action was not called before this step.",
);