Skip to content

Commit 0872117

Browse files
committed
Silence resolve tests command
This hides that the `resolve tests` command is run from the user, as it is run as part of a background process and spams the log.
1 parent c3425b5 commit 0872117

File tree

1 file changed

+5
-0
lines changed
  • extensions/ql-vscode/src/codeql-cli

1 file changed

+5
-0
lines changed

extensions/ql-vscode/src/codeql-cli/cli.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -797,6 +797,11 @@ export class CodeQLCliServer implements Disposable {
797797
["resolve", "tests", "--strict-test-discovery"],
798798
subcommandArgs,
799799
"Resolving tests",
800+
{
801+
// This happens as part of a background process, so we don't want to
802+
// spam the log with messages.
803+
silent: true,
804+
},
800805
);
801806
}
802807

0 commit comments

Comments
 (0)