tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 91a1e796eb472e0becf50d87eba25642de6c7f96
parent c27d1f33b56ed4557426bc167a568101bdda691b
Author: Waldemar Zimpel <w.zimpel@dev.utilizer.de>
Date:   Fri, 28 Nov 2025 18:51:25 +0100

Switch log level from "warning" to "info" for message

"Error relaying cell across rendezvous; closing circuits"

Closes: #41106, #40951

Diffstat:
Msrc/core/or/relay.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/core/or/relay.c b/src/core/or/relay.c @@ -336,7 +336,7 @@ circuit_receive_relay_cell(cell_t *cell, circuit_t *circ, cell->command = CELL_RELAY; /* can't be relay_early anyway */ if ((reason = circuit_receive_relay_cell(cell, TO_CIRCUIT(splice_), CELL_DIRECTION_IN)) < 0) { - log_warn(LD_REND, "Error relaying cell across rendezvous; closing " + log_info(LD_REND, "Error relaying cell across rendezvous; closing " "circuits"); return reason; }