improve tracing instruments on database::map

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk 2024-11-25 06:26:34 +00:00
parent 6c66391988
commit 62d560e2fb
15 changed files with 15 additions and 38 deletions

View file

@ -8,7 +8,6 @@ use crate::{keyval, keyval::KeyVal, stream};
///
/// - Result is deserialized
#[implement(super::Map)]
#[tracing::instrument(skip(self), fields(%self), level = "trace")]
pub fn rev_stream<'a, K, V>(&'a self) -> impl Stream<Item = Result<KeyVal<'_, K, V>>> + Send
where
K: Deserialize<'a> + Send,