Skip to content

Commit da094da

Browse files
committed
removed debug statements, fixed formatting
1 parent b5d9268 commit da094da

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
@@ -196,14 +196,10 @@ async def try_initialize(
196196
async def _read_lsp_request(
197197
input_channel: connection.TextReader, output_channel: connection.TextWriter
198198
) -> AsyncIterator[json_rpc.Request]:
199-
# LOG.info("** Inside the read lsp function ** ")
200199
try:
201-
# LOG.info("** Inside the try and except ** ")
202200
message = await lsp.read_json_rpc(input_channel)
203-
# LOG.info(f"** {message} **")
204201
yield message
205202
except json_rpc.JSONRPCException as json_rpc_error:
206-
# LOG.info("** Inside the except ** ")
207203
await lsp.write_json_rpc(
208204
output_channel,
209205
json_rpc.ErrorResponse(

0 commit comments

Comments
 (0)