summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorDavid Goulet <dgoulet@torproject.org>2021-02-16 10:36:13 -0500
committerDavid Goulet <dgoulet@torproject.org>2021-02-19 13:20:49 -0500
commit897ec8a34cbdfc510ddddd33cc027e13985fde8f (patch)
tree13f3af36b394a57bfdeea6e87bf400c4128d9146 /src/core
parent9f2e74cac710a50dcc08b3bcaf7c2dc91b4ea949 (diff)
downloadtor-897ec8a34cbdfc510ddddd33cc027e13985fde8f.tar.gz
tor-897ec8a34cbdfc510ddddd33cc027e13985fde8f.zip
hs: Remove v2 stats
We still keep v2 rendezvous stats since we will allow them until the network has entirely phased out. Related to #40266 Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/core')
-rw-r--r--src/core/or/status.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/or/status.c b/src/core/or/status.c
index 00a88a3178..d027bcf81a 100644
--- a/src/core/or/status.c
+++ b/src/core/or/status.c
@@ -105,10 +105,9 @@ log_onion_service_stats(void)
}
log_notice(LD_HEARTBEAT,
- "Our onion service%s received %u v2 and %u v3 INTRODUCE2 cells "
+ "Our onion service%s received %u v3 INTRODUCE2 cells "
"and attempted to launch %d rendezvous circuits.",
num_services == 1 ? "" : "s",
- hs_stats_get_n_introduce2_v2_cells(),
hs_stats_get_n_introduce2_v3_cells(),
hs_stats_get_n_rendezvous_launches());
}