diff options
author | Roger Dingledine <arma@torproject.org> | 2022-06-30 17:55:22 -0400 |
---|---|---|
committer | Micah Elizabeth Scott <beth@torproject.org> | 2023-05-10 07:37:11 -0700 |
commit | 4e55f28220b53041b0655ef1363cedf930d4c8e3 (patch) | |
tree | 0635dd155c10f254f56d685ebb684956e0c75020 /src/feature/hs/hs_circuit.c | |
parent | 8042379c44abff3510ad4552cb27ad7d08538410 (diff) | |
download | tor-4e55f28220b53041b0655ef1363cedf930d4c8e3.tar.gz tor-4e55f28220b53041b0655ef1363cedf930d4c8e3.zip |
bump up some log messages for easier debugging
Diffstat (limited to 'src/feature/hs/hs_circuit.c')
-rw-r--r-- | src/feature/hs/hs_circuit.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/feature/hs/hs_circuit.c b/src/feature/hs/hs_circuit.c index 26163b5ca7..719e19eded 100644 --- a/src/feature/hs/hs_circuit.c +++ b/src/feature/hs/hs_circuit.c @@ -713,13 +713,13 @@ handle_rend_pqueue_cb(mainloop_event_t *ev, void *arg) compare_rend_request_by_effort_, offsetof(pending_rend_t, idx)); - log_info(LD_REND, "Dequeued pending rendezvous request with effort: %u. " + log_notice(LD_REND, "Dequeued pending rendezvous request with effort: %u. " "Remaining requests: %u", req->rdv_data.pow_effort, smartlist_len(pow_state->rend_request_pqueue)); if (queued_rend_request_is_too_old(req, now)) { - log_info(LD_REND, "Top rend request has been pending for too long; " + log_notice(LD_REND, "Top rend request has been pending for too long; " "discarding and moving to the next one."); free_pending_rend(req); continue; /* do not increment count, this one's free */ @@ -778,8 +778,8 @@ enqueue_rend_request(const hs_service_t *service, hs_service_intro_point_t *ip, compare_rend_request_by_effort_, offsetof(pending_rend_t, idx), req); - log_info(LD_REND, "Enqueued rendezvous request with effort: %u. " - "Remaining requests: %u", + log_notice(LD_REND, "Enqueued rendezvous request with effort: %u. " + "Queued requests: %u", req->rdv_data.pow_effort, smartlist_len(pow_state->rend_request_pqueue)); @@ -1251,7 +1251,7 @@ hs_circ_handle_introduce2(const hs_service_t *service, /* Add the rendezvous request to the priority queue if PoW defenses are * enabled, otherwise rendezvous as usual. */ if (service->config.has_pow_defenses_enabled) { - log_debug(LD_REND, "Adding introduction request to pqueue with effort: %u", + log_notice(LD_REND, "Adding introduction request to pqueue with effort: %u", data.rdv_data.pow_effort); if (enqueue_rend_request(service, ip, &data, now) < 0) { goto done; |