fix(tvix/store/fuse): fix log level for a debug message

Change-Id: Ib801e46636901553d71455a739aed34e5828ca0f
Reviewed-on: https://cl.tvl.fyi/c/depot/+/8888
Reviewed-by: tazjin <tazjin@tvl.su>
Autosubmit: flokli <flokli@flokli.de>
Tested-by: BuildkiteCI
This commit is contained in:
Florian Klink 2023-06-30 16:34:42 +02:00 committed by clbot
parent 2a601d26a8
commit c767460440

View file

@ -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));
}
}