We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81b00ae commit 26d1b92Copy full SHA for 26d1b92
client/commands/v2/persistent.py
@@ -187,14 +187,10 @@ async def try_initialize(
187
async def _read_lsp_request(
188
input_channel: connection.TextReader, output_channel: connection.TextWriter
189
) -> AsyncIterator[json_rpc.Request]:
190
- # LOG.info("** Inside the read lsp function ** ")
191
try:
192
- # LOG.info("** Inside the try and except ** ")
193
message = await lsp.read_json_rpc(input_channel)
194
- # LOG.info(f"** {message} **")
195
yield message
196
except json_rpc.JSONRPCException as json_rpc_error:
197
- # LOG.info("** Inside the except ** ")
198
await lsp.write_json_rpc(
199
output_channel,
200
json_rpc.ErrorResponse(
0 commit comments