Move the tracing info to eprintln

This commit is contained in:
Clément Renault 2024-09-24 18:21:58 +02:00
parent e0c7067355
commit 7ad037841f
No known key found for this signature in database
GPG Key ID: F250A4C4E3AE5F5F

View File

@ -189,7 +189,7 @@ pub struct MergerSender {
impl Drop for MergerSender { impl Drop for MergerSender {
fn drop(&mut self) { fn drop(&mut self) {
tracing::info!( eprintln!(
"Merger channel stats: {} sends, {} writer contentions ({}%), {} merger contentions ({}%)", "Merger channel stats: {} sends, {} writer contentions ({}%), {} merger contentions ({}%)",
self.send_count.get(), self.send_count.get(),
self.writer_contentious_count.get(), self.writer_contentious_count.get(),