Skip to content

Commit 3752dec

Browse files
committed
Removed debug statements
1 parent ba16e66 commit 3752dec

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

jupyter_server_documents/kernels/kernel_client.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,6 @@ async def handle_document_related_message(self, msg: t.List[bytes]) -> t.Optiona
223223
parent_msg_data = self.message_cache.get(parent_msg_id)
224224
cell_id = parent_msg_data.get('cell_id')
225225

226-
self.log.info(f"msg_type: {dmsg["msg_type"]}")
227226
# Handle different message types using pattern matching
228227
match dmsg["msg_type"]:
229228
case "kernel_info_reply":
@@ -266,7 +265,6 @@ async def handle_document_related_message(self, msg: t.List[bytes]) -> t.Optiona
266265
if cell_id:
267266
# Extract execution count and update each collaborative room's notebook
268267
content = self.session.unpack(dmsg["content"])
269-
self.log.info(f"dsmg content: {content}")
270268
execution_count = content["execution_count"]
271269
for yroom in self._yrooms:
272270
notebook = await yroom.get_jupyter_ydoc()
@@ -281,7 +279,6 @@ async def handle_document_related_message(self, msg: t.List[bytes]) -> t.Optiona
281279
if self.output_processor and cell_id:
282280
cell_id = parent_msg_data.get('cell_id')
283281
content = self.session.unpack(dmsg["content"])
284-
self.log.info(f"dsmg content: {content}")
285282
dmsg = self.output_processor.process_output(dmsg['msg_type'], cell_id, content)
286283
# Suppress forwarding of processed messages by returning None
287284
return None

0 commit comments

Comments
 (0)