test(lsp): remove obsolete logger flags

This commit is contained in:
csh
2026-07-11 18:26:14 +08:00
parent 3642aa8b5b
commit 49e7c7f424
2 changed files with 2 additions and 2 deletions
@@ -248,7 +248,7 @@ namespace lsp::test::provider
input_file << input_payload;
}
std::string command = "\"" + server_path.string() + "\" --log=off --use-stdio < \"" +
std::string command = "\"" + server_path.string() + "\" --log=off < \"" +
input_path.string() + "\" > \"" + output_path.string() + "\"";
int exit_code = std::system(command.c_str());
assertEqual(0, exit_code, "tsl-server should exit successfully");