From b971cac0cc84da8fd6bcc3dad1f34ba3278d53d1 Mon Sep 17 00:00:00 2001 From: Sam Andreae Date: Wed, 26 Jun 2024 13:04:36 +0100 Subject: [PATCH] Lower level of replication session logs to debug --- aquadoggo/src/replication/manager.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aquadoggo/src/replication/manager.rs b/aquadoggo/src/replication/manager.rs index d6756ff81..d94b93c2e 100644 --- a/aquadoggo/src/replication/manager.rs +++ b/aquadoggo/src/replication/manager.rs @@ -4,7 +4,7 @@ use std::collections::HashMap; use std::hash::Hash; use anyhow::Result; -use log::{debug, info, trace, warn}; +use log::{debug, trace, warn}; use p2panda_rs::entry::EncodedEntry; use p2panda_rs::operation::EncodedOperation; use p2panda_rs::Human; @@ -179,7 +179,7 @@ where let sessions = self.get_sessions(remote_peer); - info!( + debug!( "Initiate outbound replication session with peer {}", remote_peer.display() ); @@ -393,7 +393,7 @@ where .await; }; - info!( + debug!( "Accept inbound replication session with peer {}", remote_peer.display() );