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 95f29ea commit fc59e3eCopy full SHA for fc59e3e
client/commands/v2/persistent.py
@@ -190,14 +190,10 @@ async def try_initialize(
190
async def _read_lsp_request(
191
input_channel: connection.TextReader, output_channel: connection.TextWriter
192
) -> AsyncIterator[json_rpc.Request]:
193
- # LOG.info("** Inside the read lsp function ** ")
194
try:
195
- # LOG.info("** Inside the try and except ** ")
196
message = await lsp.read_json_rpc(input_channel)
197
- # LOG.info(f"** {message} **")
198
yield message
199
except json_rpc.JSONRPCException as json_rpc_error:
200
- # LOG.info("** Inside the except ** ")
201
await lsp.write_json_rpc(
202
output_channel,
203
json_rpc.ErrorResponse(
0 commit comments