diff options
author | Roger Dingledine <arma@torproject.org> | 2022-06-30 18:28:10 -0400 |
---|---|---|
committer | Micah Elizabeth Scott <beth@torproject.org> | 2023-05-10 07:37:11 -0700 |
commit | d0c2d4cb431e86e7637ad6d917a52ae4ea25b256 (patch) | |
tree | c89775392263e2717a8f04eec63a44505698aa98 /src/feature | |
parent | 4e55f28220b53041b0655ef1363cedf930d4c8e3 (diff) | |
download | tor-d0c2d4cb431e86e7637ad6d917a52ae4ea25b256.tar.gz tor-d0c2d4cb431e86e7637ad6d917a52ae4ea25b256.zip |
add a log line for when client succeeds
Diffstat (limited to 'src/feature')
-rw-r--r-- | src/feature/hs/hs_client.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/feature/hs/hs_client.c b/src/feature/hs/hs_client.c index e241e6218d..1cecacaf9f 100644 --- a/src/feature/hs/hs_client.c +++ b/src/feature/hs/hs_client.c @@ -678,6 +678,7 @@ send_introduce1(origin_circuit_t *intro_circ, log_warn(LD_REND, "Haven't solved the PoW yet."); goto tran_err; } + log_notice(LD_REND, "Got a PoW solution we like! Shipping it!"); /* Set flag to reflect that the HS we are attempting to rendezvous has PoW * defenses enabled, and as such we will need to be more lenient with * timing out while waiting for the circuit to be built. */ |