]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Switch log level from "warning" to "info" for message
authorWaldemar Zimpel <w.zimpel@dev.utilizer.de>
Fri, 28 Nov 2025 17:51:25 +0000 (18:51 +0100)
committerWaldemar Zimpel <w.zimpel@dev.utilizer.de>
Fri, 28 Nov 2025 17:51:25 +0000 (18:51 +0100)
"Error relaying cell across rendezvous; closing circuits"

Closes: #41106, #40951
src/core/or/relay.c

index da4b00f24612e317933c293089bee3d1400adc92..9ddd858661b59ce032ac5d7582ec27428995dbe4 100644 (file)
@@ -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;
       }