We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 375ed54 commit 547f7a2Copy full SHA for 547f7a2
jupyter_server/services/contents/fileio.py
@@ -264,7 +264,8 @@ def _get_os_path(self, path):
264
------
265
404: if path is outside root
266
"""
267
- self.log.debug("Reading path from disk: %s", path)
+ # This statement can cause excessive logging, uncomment if necessary when troubleshooting.
268
+ # self.log.debug("Reading path from disk: %s", path)
269
root = os.path.abspath(self.root_dir) # type:ignore[attr-defined]
270
# to_os_path is not safe if path starts with a drive, since os.path.join discards first part
271
if os.path.splitdrive(path)[0]:
0 commit comments