summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2012-06-15 03:58:47 -0400
committerRoger Dingledine <arma@torproject.org>2012-06-15 03:58:47 -0400
commita1caa96f9bff7e95cabad688d36a941b599d0e2a (patch)
tree5dbb35c22c188c4d7a2e8d30280829f5c1c9e48e
parent5625812f9abc5f13dbaa12e89553ac636e23794d (diff)
downloadtor-a1caa96f9bff7e95cabad688d36a941b599d0e2a.tar.gz
tor-a1caa96f9bff7e95cabad688d36a941b599d0e2a.zip
another little step at making debugging 5458 easier
-rw-r--r--src/or/circuitbuild.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c
index 01eeb14fe0..65fcaf4089 100644
--- a/src/or/circuitbuild.c
+++ b/src/or/circuitbuild.c
@@ -2295,9 +2295,9 @@ circuit_send_next_onion_skin(origin_circuit_t *circ)
if (guard) {
guard->circuit_successes++;
- log_info(LD_PROTOCOL, "Got success count %u/%u for guard %s",
+ log_info(LD_PROTOCOL, "Got success count %u/%u for guard %s=%s",
guard->circuit_successes, guard->first_hops,
- guard->nickname);
+ guard->nickname, hex_str(guard->identity, DIGEST_LEN));
if (guard->first_hops < guard->circuit_successes) {
log_warn(LD_BUG, "Unexpectedly high circuit_successes (%u/%u) "