Skip to content

Commit b7d38a6

Browse files
committed
Upated info to debug
1 parent 0c455e5 commit b7d38a6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

jupyter_server_documents/outputs/output_processor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ async def output_task(self, msg_type, cell_id, content):
163163
target_cell["outputs"][output_index] = output
164164
else:
165165
target_cell["outputs"].append(output)
166-
self.log.info(f"Wrote output to ydoc: {path} {cell_id} {output}")
166+
self.log.debug(f"Wrote output to ydoc: {path} {cell_id} {output}")
167167

168168

169169
def transform_output(self, msg_type, content, ydoc=False):

jupyter_server_documents/rooms/yroom_file_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ async def save(self, jupyter_ydoc: YBaseDoc):
554554

555555
# Set most recent `last_modified` timestamp
556556
if file_data['last_modified']:
557-
self.log.info(f"Reseting last_modified to {file_data['last_modified']}")
557+
self.log.debug(f"Reseting last_modified to {file_data['last_modified']}")
558558
self._last_modified = file_data['last_modified']
559559

560560
# Set `dirty` to `False` to hide the "unsaved changes" icon in the

0 commit comments

Comments
 (0)