]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Demote log message to info.
authorMike Perry <mikeperry-git@torproject.org>
Thu, 2 Jun 2022 18:48:14 +0000 (18:48 +0000)
committerMike Perry <mikeperry-git@torproject.org>
Thu, 2 Jun 2022 18:48:14 +0000 (18:48 +0000)
This log is harmless, and can be common at relays if clients are sending XOFF.

src/core/mainloop/mainloop.c

index cd57dea3d4d5bf5c833af4b11c5594811cda9fd3..526f8c37af43d997ff0115a15a2a0a56cfdb3a92 100644 (file)
@@ -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))