More error message improvements

This commit is contained in:
Henry Mercer
2026-02-17 13:38:09 +00:00
parent 3dd1275368
commit 554b93127b
2 changed files with 3 additions and 4 deletions
+1 -2
View File
@@ -781,8 +781,7 @@ export async function getOverlayDatabaseMode(
logger.info(
`Setting overlay database mode to ${OverlayDatabaseMode.None} ` +
"because overlay analysis previously failed with this combination of languages, " +
"disk space, and CodeQL version. " +
"Consider running CodeQL analysis on a larger runner.",
"disk space, and CodeQL version.",
);
overlayDatabaseMode = OverlayDatabaseMode.None;
skippedDueToCachedStatus = true;
+2 -2
View File
@@ -54,8 +54,8 @@ export async function shouldSkipOverlayAnalysis(
status.attemptedToBuildOverlayBaseDatabase &&
!status.builtOverlayBaseDatabase
) {
logger.info(
"Cached overlay status indicates that building an overlay base database was unsuccessful, so will skip overlay analysis.",
logger.debug(
"Cached overlay status indicates that building an overlay base database was unsuccessful.",
);
return true;
}