Skip to content

Commit 3dd1275

Browse files
committed
Improve error messages
1 parent d24014a commit 3dd1275

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lib/init-action-post.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/init-action.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/init-action-post-helper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ async function recordOverlayStatus(
288288
logger.debug(
289289
`Saved overlay status to the Actions cache: ${JSON.stringify(overlayStatus)}`,
290290
);
291-
logger.warning(
291+
logger.error(
292292
"This job attempted to run with improved incremental analysis but it did not complete successfully. " +
293293
"This may have been due to disk space constraints: using improved incremental analysis can " +
294294
"require a significant amount of disk space for some repositories. " +

src/overlay/status.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export async function shouldSkipOverlayAnalysis(
6060
return true;
6161
}
6262
logger.debug(
63-
"Cached overlay status indicates that building an overlay base database was successful.",
63+
"Cached overlay status does not indicate a previous unsuccessful attempt to build an overlay base database.",
6464
);
6565
return false;
6666
}

0 commit comments

Comments
 (0)