diff options
-rw-r--r-- | tvix/castore/src/fs/mod.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tvix/castore/src/fs/mod.rs b/tvix/castore/src/fs/mod.rs index 89a9986202ea..2bf22a33ff99 100644 --- a/tvix/castore/src/fs/mod.rs +++ b/tvix/castore/src/fs/mod.rs @@ -426,7 +426,6 @@ where // for the discussion on alternatives. let dh = self.next_dir_handle.fetch_add(1, Ordering::SeqCst); - debug!("add dir handle {}", dh); self.dir_handles .write() .insert(dh, (Span::current(), Arc::new(Mutex::new(rx)))); @@ -732,7 +731,6 @@ where // for the discussion on alternatives. let fh = self.next_file_handle.fetch_add(1, Ordering::SeqCst); - debug!("add file handle {}", fh); self.file_handles .write() .insert(fh, (Span::current(), Arc::new(Mutex::new(blob_reader)))); |