Skip to content

Commit

Permalink
remove --logs-stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
olegklimov committed Feb 7, 2024
1 parent 703a7fd commit c166dd0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/refact_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,12 @@ def get_server_commands(self):
address_url = s.get("address_url", "")
address_url = address_url if len(address_url) > 0 else "Refact"
api_key = s.get("api_key", "")
options = [self.get_server_path(), "--address-url", address_url, "--api-key", api_key, "--lsp-stdin-stdout", "1", "--logs-stderr"]
options = [
self.get_server_path(),
"--address-url", address_url,
"--api-key", api_key,
"--lsp-stdin-stdout", "1",
]

telemetry_basic = s.get("telemetry_basic", False)
if telemetry_basic:
Expand Down

0 comments on commit c166dd0

Please sign in to comment.