Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion jupyter_server_documents/outputs/output_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ async def output_task(self, msg_type, cell_id, content):
target_cell["outputs"][output_index] = output
else:
target_cell["outputs"].append(output)
self.log.info(f"Wrote output to ydoc: {path} {cell_id} {output}")
self.log.debug(f"Wrote output to ydoc: {path} {cell_id} {output}")


def transform_output(self, msg_type, content, ydoc=False):
Expand Down
2 changes: 1 addition & 1 deletion jupyter_server_documents/rooms/yroom_file_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ async def save(self, jupyter_ydoc: YBaseDoc):

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

# Set `dirty` to `False` to hide the "unsaved changes" icon in the
Expand Down
Loading