From 11d87cff50e7eeba2d5307a7eaef6f4a4ff5d3db Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Fri, 22 Nov 2013 21:39:06 +0000 Subject: Log the number of introduction points in the descriptor --- src/or/rendservice.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/or/rendservice.c b/src/or/rendservice.c index 06d7a4900..d7932575c 100644 --- a/src/or/rendservice.c +++ b/src/or/rendservice.c @@ -3137,7 +3137,9 @@ rend_services_introduce(void) if (descriptor_available) { // Need to think about connecting to these introduction points now - log_info(LD_REND, "Descriptor available for %s", safe_str_client(service->service_id)); + log_info(LD_REND, "Descriptor available for %s, with %i introduction points", + safe_str_client(service->service_id), + smartlist_len(entry->parsed->intro_nodes)); SMARTLIST_FOREACH(entry->parsed->intro_nodes, rend_intro_point_t *, intro, { log_info(LD_REND, "Found router %s as an existing intro point for %s.", -- cgit v1.2.3