Don't print PeerId when requesting quote

Bob always just talks to one party, the PeerId is just noise.
pull/243/head
Thomas Eizinger 3 years ago
parent cbef577e2d
commit 06e3bccaa6
No known key found for this signature in database
GPG Key ID: 651AC83A6C6C8B96

@ -36,10 +36,7 @@ pub struct Behaviour {
impl Behaviour {
pub fn send(&mut self, alice: PeerId, quote_request: QuoteRequest) -> Result<RequestId> {
debug!(
"Requesting quote for {} from {}",
quote_request.btc_amount, alice
);
debug!("Requesting quote for {}", quote_request.btc_amount);
let id = self.rr.send_request(&alice, quote_request);

Loading…
Cancel
Save