Skip to content

Commit

Permalink
Improves autobuilder log message
Browse files Browse the repository at this point in the history
  • Loading branch information
sidshank committed Dec 23, 2024
1 parent 1e70014 commit 0a7d6c2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/autobuild.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ export async function determineAutobuildLanguages(
(await codeql.supportsFeature(ToolsFeature.TraceCommandUseBuildMode))) ||
config.buildMode === BuildMode.Manual
) {
logger.info(`Using ${config.buildMode} build mode, nothing to autobuild.`);
logger.info(
`Using build mode "${config.buildMode}", nothing to autobuild. ` +
`See ${DocUrl.CODEQL_BUILD_MODES} for more information.`,

Check failure

Code scanning / ESLint

Ensure code is properly formatted, use insertion, deletion, or replacement to obtain desired formatting. Error

Insert ··
);
return undefined;
}

Expand Down

0 comments on commit 0a7d6c2

Please sign in to comment.