about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--tvix/store/src/fuse/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/store/src/fuse/mod.rs b/tvix/store/src/fuse/mod.rs
index ac0bf29dab..a357890f59 100644
--- a/tvix/store/src/fuse/mod.rs
+++ b/tvix/store/src/fuse/mod.rs
@@ -218,7 +218,7 @@ impl fuser::Filesystem for FUSE {
                     reply.error(libc::ENOENT);
                 }
                 Ok(Some((ino, inode_data))) => {
-                    warn!(inode_data=?&inode_data, ino=ino, "Some");
+                    debug!(inode_data=?&inode_data, ino=ino, "Some");
                     reply_with_entry(reply, &gen_file_attr(&inode_data, ino));
                 }
             }