Browse Source

Prefer tracing fields of stringified log message

new-http-api
Thomas Eizinger 3 years ago
parent
commit
0b2d2ec3c2
No known key found for this signature in database GPG Key ID: 651AC83A6C6C8B96
  1. 2
      daemon/src/maker_inc_connections.rs

2
daemon/src/maker_inc_connections.rs

@ -119,7 +119,7 @@ impl Actor {
) -> Result<()> {
let taker_id = TakerId::default();
tracing::info!("New taker {} connected on {}", taker_id, taker_address);
tracing::info!(%taker_id, address = %taker_address, "New taker connected");
let noise = Arc::new(Mutex::new(
noise::responder_handshake(&mut stream, &self.noise_priv_key).await?,

Loading…
Cancel
Save