summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Perry <mikeperry-git@torproject.org>2022-06-02 18:48:14 +0000
committerMike Perry <mikeperry-git@torproject.org>2022-06-02 18:48:14 +0000
commit9769b77c9b196bf2ccc58d9ddee00bdcb13a7e02 (patch)
treed46dbe0d175782c74bba71b2f561217407c813e2
parent5345b43fb845cf76d4f0066057170963b96eec7e (diff)
downloadtor-9769b77c9b196bf2ccc58d9ddee00bdcb13a7e02.tar.gz
tor-9769b77c9b196bf2ccc58d9ddee00bdcb13a7e02.zip
Demote log message to info.
This log is harmless, and can be common at relays if clients are sending XOFF.
-rw-r--r--src/core/mainloop/mainloop.c4
1 files 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))