aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Baines <cbaines8@gmail.com>2013-11-22 21:39:06 +0000
committerChristopher Baines <cb15g11@soton.ac.uk>2014-02-16 16:55:10 +0000
commit11d87cff50e7eeba2d5307a7eaef6f4a4ff5d3db (patch)
tree619bc0a994530f7c954a9cbdff9ddec70baeee46
parentdf6e17ad5feb3fd28182442e77862d0deb4d8888 (diff)
downloadtor-11d87cff50e7eeba2d5307a7eaef6f4a4ff5d3db.tar
tor-11d87cff50e7eeba2d5307a7eaef6f4a4ff5d3db.tar.gz
Log the number of introduction points in the descriptor
-rw-r--r--src/or/rendservice.c4
1 files changed, 3 insertions, 1 deletions
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.",