Skip to content

Commit 3064415

Browse files
committed
Remove setting of evaluator log verbosity level
1 parent f03ef66 commit 3064415

2 files changed

Lines changed: 0 additions & 10 deletions

File tree

extensions/ql-vscode/src/query-server/legacy/query-server-client.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -156,11 +156,6 @@ export class QueryServerClient extends DisposableObject {
156156

157157
args.push("--evaluator-log");
158158
args.push(structuredLogFile);
159-
160-
// We hard-code the verbosity level to 5 and minify to false.
161-
// This will be the behavior of the per-query structured logging in the CLI after 2.8.3.
162-
args.push("--evaluator-log-level");
163-
args.push("5");
164159
}
165160

166161
if (this.config.debug) {

extensions/ql-vscode/src/query-server/query-server-client.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -194,11 +194,6 @@ export class QueryServerClient extends DisposableObject {
194194
args.push("--evaluator-log");
195195
args.push(structuredLogFile);
196196

197-
// We hard-code the verbosity level to 5 and minify to false.
198-
// This will be the behavior of the per-query structured logging in the CLI after 2.8.3.
199-
args.push("--evaluator-log-level");
200-
args.push("5");
201-
202197
if (this.config.debug) {
203198
args.push("--debug", "--tuple-counting");
204199
}

0 commit comments

Comments
 (0)