Skip to content

Commit 554b931

Browse files
committed
More error message improvements
1 parent 3dd1275 commit 554b931

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/config-utils.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -781,8 +781,7 @@ export async function getOverlayDatabaseMode(
781781
logger.info(
782782
`Setting overlay database mode to ${OverlayDatabaseMode.None} ` +
783783
"because overlay analysis previously failed with this combination of languages, " +
784-
"disk space, and CodeQL version. " +
785-
"Consider running CodeQL analysis on a larger runner.",
784+
"disk space, and CodeQL version.",
786785
);
787786
overlayDatabaseMode = OverlayDatabaseMode.None;
788787
skippedDueToCachedStatus = true;

src/overlay/status.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ export async function shouldSkipOverlayAnalysis(
5454
status.attemptedToBuildOverlayBaseDatabase &&
5555
!status.builtOverlayBaseDatabase
5656
) {
57-
logger.info(
58-
"Cached overlay status indicates that building an overlay base database was unsuccessful, so will skip overlay analysis.",
57+
logger.debug(
58+
"Cached overlay status indicates that building an overlay base database was unsuccessful.",
5959
);
6060
return true;
6161
}

0 commit comments

Comments
 (0)