diff options
author | Florian Klink <flokli@flokli.de> | 2023-06-30T14·34+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-07-02T11·40+0000 |
commit | c767460440f8106759775a5cb917e1d9c0b7d334 (patch) | |
tree | 68dccf7ff9505b3e9f96fa294f217fb6d5234264 /tvix/store | |
parent | 2a601d26a8ce4aa762bcad60e8c2f3fd35284b7a (diff) |
fix(tvix/store/fuse): fix log level for a debug message r/6385
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
Diffstat (limited to 'tvix/store')
-rw-r--r-- | tvix/store/src/fuse/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/store/src/fuse/mod.rs b/tvix/store/src/fuse/mod.rs index ac0bf29dab09..a357890f59e3 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)); } } |