Remove setting of evaluator log verbosity level

This commit is contained in:
Charis Kyriakou
2023-07-21 15:33:07 +00:00
parent f03ef66596
commit 3064415068
2 changed files with 0 additions and 10 deletions

View File

@@ -156,11 +156,6 @@ export class QueryServerClient extends DisposableObject {
args.push("--evaluator-log");
args.push(structuredLogFile);
// We hard-code the verbosity level to 5 and minify to false.
// This will be the behavior of the per-query structured logging in the CLI after 2.8.3.
args.push("--evaluator-log-level");
args.push("5");
}
if (this.config.debug) {

View File

@@ -194,11 +194,6 @@ export class QueryServerClient extends DisposableObject {
args.push("--evaluator-log");
args.push(structuredLogFile);
// We hard-code the verbosity level to 5 and minify to false.
// This will be the behavior of the per-query structured logging in the CLI after 2.8.3.
args.push("--evaluator-log-level");
args.push("5");
if (this.config.debug) {
args.push("--debug", "--tuple-counting");
}