From 710c4859d93346c46c8d01ff2e4bc48308f5bb5c Mon Sep 17 00:00:00 2001 From: nicolas <48695862+merklefruit@users.noreply.github.com> Date: Tue, 15 Oct 2024 10:31:36 +0200 Subject: [PATCH] chore: log level --- bolt-sidecar/src/driver.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bolt-sidecar/src/driver.rs b/bolt-sidecar/src/driver.rs index a1d7d85b9..2bb5b1e99 100644 --- a/bolt-sidecar/src/driver.rs +++ b/bolt-sidecar/src/driver.rs @@ -320,7 +320,7 @@ impl SidecarDriver { // Create a commitment by signing the request match request.commit_and_sign(&self.commitment_signer).await { Ok(commitment) => { - info!(target_slot, elapsed = ?start.elapsed(), "Commitment signed and sent"); + debug!(target_slot, elapsed = ?start.elapsed(), "Commitment signed and sent"); response.send(Ok(commitment)).ok() } Err(err) => {