We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e70014 commit 0a7d6c2Copy full SHA for 0a7d6c2
src/autobuild.ts
@@ -23,7 +23,10 @@ export async function determineAutobuildLanguages(
23
(await codeql.supportsFeature(ToolsFeature.TraceCommandUseBuildMode))) ||
24
config.buildMode === BuildMode.Manual
25
) {
26
- logger.info(`Using ${config.buildMode} build mode, nothing to autobuild.`);
+ logger.info(
27
+ `Using build mode "${config.buildMode}", nothing to autobuild. ` +
28
+ `See ${DocUrl.CODEQL_BUILD_MODES} for more information.`,
29
+ );
30
return undefined;
31
}
32
0 commit comments