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.
This commit is contained in:
Koen Vlaswinkel
2023-11-24 14:46:12 +01:00
parent c3425b5146
commit 08721179dc

View File

@@ -797,6 +797,11 @@ export class CodeQLCliServer implements Disposable {
["resolve", "tests", "--strict-test-discovery"],
subcommandArgs,
"Resolving tests",
{
// This happens as part of a background process, so we don't want to
// spam the log with messages.
silent: true,
},
);
}