[tor-commits] [tor] 01/04: Demote log message to info.

gitolite role git at cupani.torproject.org
Thu Jun 2 20:13:01 UTC 2022


This is an automated email from the git hooks/post-receive script.

dgoulet pushed a commit to branch main
in repository tor.

commit 9769b77c9b196bf2ccc58d9ddee00bdcb13a7e02
Author: Mike Perry <mikeperry-git at torproject.org>
AuthorDate: Thu Jun 2 18:48:14 2022 +0000

    Demote log message to info.
    
    This log is harmless, and can be common at relays if clients are sending XOFF.
---
 src/core/mainloop/mainloop.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/core/mainloop/mainloop.c b/src/core/mainloop/mainloop.c
index cd57dea3d4..526f8c37af 100644
--- a/src/core/mainloop/mainloop.c
+++ b/src/core/mainloop/mainloop.c
@@ -644,8 +644,8 @@ connection_start_reading,(connection_t *conn))
     if (CONN_IS_EDGE(conn) && TO_EDGE_CONN(conn)->xoff_received) {
       /* We should not get called here if we're waiting for an XON, but
        * belt-and-suspenders */
-      log_notice(LD_NET,
-                 "Request to start reading on an edgeconn blocked with XOFF");
+      log_info(LD_NET,
+               "Request to start reading on an edgeconn blocked with XOFF");
       return;
     }
     if (event_add(conn->read_event, NULL))

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the tor-commits mailing list