Skip to content

Commit

Permalink
Lower level of replication session logs to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
sandreae committed Jun 26, 2024
1 parent 413cc12 commit b971cac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions aquadoggo/src/replication/manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -179,7 +179,7 @@ where

let sessions = self.get_sessions(remote_peer);

info!(
debug!(
"Initiate outbound replication session with peer {}",
remote_peer.display()
);
Expand Down Expand Up @@ -393,7 +393,7 @@ where
.await;
};

info!(
debug!(
"Accept inbound replication session with peer {}",
remote_peer.display()
);
Expand Down

0 comments on commit b971cac

Please sign in to comment.