Skip to content

Commit 26d1b92

Browse files
committed
removed debug statements, fixed formatting
1 parent 81b00ae commit 26d1b92

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
@@ -187,14 +187,10 @@ async def try_initialize(
187187
async def _read_lsp_request(
188188
input_channel: connection.TextReader, output_channel: connection.TextWriter
189189
) -> AsyncIterator[json_rpc.Request]:
190-
# LOG.info("** Inside the read lsp function ** ")
191190
try:
192-
# LOG.info("** Inside the try and except ** ")
193191
message = await lsp.read_json_rpc(input_channel)
194-
# LOG.info(f"** {message} **")
195192
yield message
196193
except json_rpc.JSONRPCException as json_rpc_error:
197-
# LOG.info("** Inside the except ** ")
198194
await lsp.write_json_rpc(
199195
output_channel,
200196
json_rpc.ErrorResponse(

0 commit comments

Comments
 (0)