summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDavid Goulet <dgoulet@torproject.org>2020-11-17 13:23:29 -0500
committerDavid Goulet <dgoulet@torproject.org>2020-11-17 13:23:34 -0500
commit16351d655d5f2cf8a69323b69f55f89c96d91beb (patch)
tree4c96f6fc3a524811af9d9dec431dcf40d781c56a /src
parent07006785fd47e6ce3303659a03004e133d204cc2 (diff)
downloadtor-16351d655d5f2cf8a69323b69f55f89c96d91beb.tar.gz
tor-16351d655d5f2cf8a69323b69f55f89c96d91beb.zip
sendme: Turn log warning into debug
When sending the stream level SENDME, it is possible the cirucit was marked for close or any other failures that can occur. These events can occur naturally. Fixes #40142 Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src')
-rw-r--r--src/core/or/sendme.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/or/sendme.c b/src/core/or/sendme.c
index 7b4595c1ac..9cad245b29 100644
--- a/src/core/or/sendme.c
+++ b/src/core/or/sendme.c
@@ -398,8 +398,8 @@ sendme_connection_edge_consider_sending(edge_connection_t *conn)
conn->deliver_window += STREAMWINDOW_INCREMENT;
if (connection_edge_send_command(conn, RELAY_COMMAND_SENDME,
NULL, 0) < 0) {
- log_warn(LD_BUG, "connection_edge_send_command failed while sending "
- "a SENDME. Circuit probably closed, skipping.");
+ log_debug(LD_CIRC, "connection_edge_send_command failed while sending "
+ "a SENDME. Circuit probably closed, skipping.");
goto end; /* The circuit's closed, don't continue */
}
}