This is an automated email from the git hooks/post-receive script.
dgoulet pushed a commit to branch main in repository tor.
The following commit(s) were added to refs/heads/main by this push: new 8713d9762a log: Remove extra newline in a log statement 8713d9762a is described below
commit 8713d9762a79c46829891cafbcf1a972f0946065 Author: David Goulet dgoulet@torproject.org AuthorDate: Wed Nov 23 13:28:22 2022 -0500
log: Remove extra newline in a log statement
Signed-off-by: David Goulet dgoulet@torproject.org --- src/core/or/circuitstats.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/core/or/circuitstats.c b/src/core/or/circuitstats.c index f55771c79e..c759ddf281 100644 --- a/src/core/or/circuitstats.c +++ b/src/core/or/circuitstats.c @@ -709,7 +709,7 @@ circuit_build_times_handle_completed_hop(origin_circuit_t *circ) * Switch their purpose and wait. */ if (circ->base_.purpose != CIRCUIT_PURPOSE_C_MEASURE_TIMEOUT) { log_info(LD_CIRC, - "Deciding to timeout circuit %"PRIu32"\n", + "Deciding to timeout circuit %"PRIu32, (circ->global_identifier)); circuit_build_times_mark_circ_as_measurement_only(circ); }
tor-commits@lists.torproject.org