From daf6eb6d4560264989ce1982fff23bcf3c496fcc Mon Sep 17 00:00:00 2001 From: Roman Krasiuk Date: Fri, 12 Jan 2024 14:03:21 +0100 Subject: [PATCH] chore(db): format backtrace (#6039) --- crates/storage/db/src/implementation/mdbx/tx.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crates/storage/db/src/implementation/mdbx/tx.rs b/crates/storage/db/src/implementation/mdbx/tx.rs index 88a5dbcb14..55ebf85e8b 100644 --- a/crates/storage/db/src/implementation/mdbx/tx.rs +++ b/crates/storage/db/src/implementation/mdbx/tx.rs @@ -211,9 +211,8 @@ impl MetricsHandler { warn!( target: "storage::db::mdbx", ?open_duration, - ?backtrace, %self.txn_id, - "The database read transaction has been open for too long" + "The database read transaction has been open for too long. Backtrace: {}", backtrace.to_string() ); } }