From a8dbd06c0b011135a59ab8e2ca9009ea9d57c418 Mon Sep 17 00:00:00 2001 From: Lucas Soriano del Pino Date: Thu, 7 Dec 2023 18:15:57 +1100 Subject: [PATCH] chore: Demote Lightning-wallet-sync-finished log to TRACE Same as the previous patch, this log is not that useful and it's printed _all_ the time. --- crates/ln-dlc-node/src/node/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ln-dlc-node/src/node/mod.rs b/crates/ln-dlc-node/src/node/mod.rs index 70d6e3440..17378a4a9 100644 --- a/crates/ln-dlc-node/src/node/mod.rs +++ b/crates/ln-dlc-node/src/node/mod.rs @@ -732,7 +732,7 @@ fn lightning_wallet_sync( .sync(confirmables) .context("Lightning wallet sync failed")?; - tracing::info!( + tracing::trace!( "Lightning wallet sync finished in {}ms.", now.elapsed().as_millis() );