Skip to content

Commit fc59e3e

Browse files
committed
removed debug statements, fixed formatting
1 parent 95f29ea commit fc59e3e

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

client/commands/v2/persistent.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -190,14 +190,10 @@ async def try_initialize(
190190
async def _read_lsp_request(
191191
input_channel: connection.TextReader, output_channel: connection.TextWriter
192192
) -> AsyncIterator[json_rpc.Request]:
193-
# LOG.info("** Inside the read lsp function ** ")
194193
try:
195-
# LOG.info("** Inside the try and except ** ")
196194
message = await lsp.read_json_rpc(input_channel)
197-
# LOG.info(f"** {message} **")
198195
yield message
199196
except json_rpc.JSONRPCException as json_rpc_error:
200-
# LOG.info("** Inside the except ** ")
201197
await lsp.write_json_rpc(
202198
output_channel,
203199
json_rpc.ErrorResponse(

0 commit comments

Comments
 (0)