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);