Reduce log level on variants access

This commit is contained in:
asonix 2023-07-22 20:20:58 -05:00
parent 1f3298363f
commit 13d6e10886

View file

@ -962,7 +962,7 @@ impl HashRepo for SledRepo {
opt.map(|ivec| I::from_bytes(ivec.to_vec())).transpose()
}
#[tracing::instrument(skip(self, hash), fields(hash = hex::encode(&hash)))]
#[tracing::instrument(level = "debug", skip(self, hash), fields(hash = hex::encode(&hash)))]
async fn variants<I: Identifier + 'static>(
&self,
hash: Self::Bytes,