Replace eprintlns by tracing

This commit is contained in:
Clément Renault
2024-11-20 15:29:51 +01:00
parent 4d616f8794
commit a38344acb3
4 changed files with 5 additions and 7 deletions

View File

@ -224,10 +224,10 @@ where
MSP: Fn() -> bool + Sync,
SP: Fn(Progress) + Sync,
{
eprintln!("We are resetting the extractor allocators");
tracing::trace!("We are resetting the extractor allocators");
// Clean up and reuse the extractor allocs
for extractor_alloc in extractor_allocs.iter_mut() {
eprintln!("\tWith {} bytes resetted", extractor_alloc.0.allocated_bytes());
tracing::trace!("\tWith {} bytes reset", extractor_alloc.0.allocated_bytes());
extractor_alloc.0.reset();
}