Skip to content

Commit 4e76a0d

Browse files
Jami CogswellJami Cogswell
authored andcommitted
showWarningMessage when number of repos is limited
1 parent 7f9d7ae commit 4e76a0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/ql-vscode/src/variant-analysis/view-autofixes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ function getSelectedRepositoryNames(
245245
// Limit to MAX_NUM_REPOS by slicing the array.
246246
if (fullNames.length > MAX_NUM_REPOS) {
247247
fullNames = fullNames.slice(0, MAX_NUM_REPOS);
248-
void extLogger.log(
248+
void extLogger.showWarningMessage(
249249
`Only the first ${MAX_NUM_REPOS} repos (${fullNames.join(", ")}) will be included in the Autofix results.`,
250250
);
251251
}

0 commit comments

Comments
 (0)