Remove all tracing::instrument attributes from database::abstraction::*

This commit is contained in:
Jonas Platte 2022-02-12 16:28:43 +01:00
parent accdb77315
commit 0ad6eac4f8
No known key found for this signature in database
GPG key ID: 7D261D771D915378
4 changed files with 0 additions and 34 deletions

View file

@ -39,7 +39,6 @@ impl Tree for SledEngineTree {
Ok(())
}
#[tracing::instrument(skip(self, iter))]
fn insert_batch<'a>(&self, iter: &mut dyn Iterator<Item = (Vec<u8>, Vec<u8>)>) -> Result<()> {
for (key, value) in iter {
self.0.insert(key, value)?;