about summary refs log tree commit diff
path: root/tvix/castore/src/fs/mod.rs
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2024-04-15T13·07+0300
committerclbot <clbot@tvl.fyi>2024-04-15T13·54+0000
commit50065afd36e9dbe685fada65a0c65a520918ec1d (patch)
treeafdec0779f2a0b6cef0d6d0f820cac0b5bbac984 /tvix/castore/src/fs/mod.rs
parentd3d88431f3fab17f545b459273d180f433a1b419 (diff)
refactor(tvix/castore/fs): remove "add … handle" debug messages r/7920
Change-Id: Iac22bbef96a2afa0416f011d073934b52b19975d
Reviewed-on: https://cl.tvl.fyi/c/depot/+/11433
Reviewed-by: Connor Brewster <cbrewster@hey.com>
Autosubmit: flokli <flokli@flokli.de>
Tested-by: BuildkiteCI
Diffstat (limited to '')
-rw-r--r--tvix/castore/src/fs/mod.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/tvix/castore/src/fs/mod.rs b/tvix/castore/src/fs/mod.rs
index 89a9986202..2bf22a33ff 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))));