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