From e74dfa7fa165929b720342c6f304d7f34967630d Mon Sep 17 00:00:00 2001 From: Saibato Date: Tue, 24 Sep 2019 06:50:37 +0000 Subject: [PATCH] Show in info log the name of the hidden onion service Signed-off-by: Saibato --- connectd/tor_autoservice.c | 1 + 1 file changed, 1 insertion(+) diff --git a/connectd/tor_autoservice.c b/connectd/tor_autoservice.c index e7cb64451..06dd5a66e 100644 --- a/connectd/tor_autoservice.c +++ b/connectd/tor_autoservice.c @@ -100,6 +100,7 @@ static struct wireaddr *make_onion(const tal_t *ctx, if (!parse_wireaddr(name, onion, DEFAULT_PORT, false, NULL)) status_failed(STATUS_FAIL_INTERNAL_ERROR, "Tor gave bad onion name '%s'", name); + status_info("New autotor service onion address: \"%s:%d\"", name, DEFAULT_PORT); discard_remaining_response(rbuf); return onion; }