From 4b85cd5704ea44ae712680a93bf7a128c38cadcf Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Mon, 15 Nov 2021 17:58:40 +1100 Subject: [PATCH] Log establishment of connection --- daemon/src/connection.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/daemon/src/connection.rs b/daemon/src/connection.rs index bd51a43..57bb3b8 100644 --- a/daemon/src/connection.rs +++ b/daemon/src/connection.rs @@ -118,6 +118,8 @@ impl Actor { .send(ConnectionStatus::Online) .expect("receiver to outlive the actor"); + tracing::info!(address = %maker_addr, "Established connection to maker"); + Ok(()) }