From 953e22080f5fb1370c5ab71666f374285100f9cb Mon Sep 17 00:00:00 2001 From: Keagan McClelland Date: Mon, 4 Oct 2021 15:25:16 -0600 Subject: [PATCH] adds debug statement --- appmgr/src/net/tor.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/appmgr/src/net/tor.rs b/appmgr/src/net/tor.rs index cf71161d4..42d7f9ab6 100644 --- a/appmgr/src/net/tor.rs +++ b/appmgr/src/net/tor.rs @@ -366,7 +366,12 @@ pub async fn tor_health_check(client: &Client, tor_controller: &TorController) { .await; match result { // if success, do nothing - Ok(_) => {} + Ok(_) => { + log::debug!( + "Successfully verified main tor address liveness at {}", + onion + ) + } // if failure, disconnect tor control port, and restart tor controller Err(e) => { log::error!("Unable to reach self over tor: {}", e);