[Asterisk-code-review] http.c: Reduce log spam (asterisk[master])
George Joseph
asteriskteam at digium.com
Wed Jul 5 15:37:45 CDT 2017
George Joseph has uploaded this change for review. ( https://gerrit.asterisk.org/5964
Change subject: http.c: Reduce log spam
......................................................................
http.c: Reduce log spam
Messages like "fwrite() failed: Connection reset by peer" are no
help whatsoever, especially since they can be caused simply by a
client disconnecting.
* Make those WARNINGs DEBUGs.
Change-Id: I17bd5f3621514152a7b2b263c801324c5e96568b
---
M main/http.c
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/64/5964/1
diff --git a/main/http.c b/main/http.c
index ea85a28..2c483dc 100644
--- a/main/http.c
+++ b/main/http.c
@@ -532,7 +532,7 @@
if (send_content && fd) {
while ((len = read(fd, buf, sizeof(buf))) > 0) {
if (ast_iostream_write(ser->stream, buf, len) != len) {
- ast_log(LOG_WARNING, "fwrite() failed: %s\n", strerror(errno));
+ ast_debug(1, "fwrite() failed: %s\n", strerror(errno));
close_connection = 1;
break;
}
--
To view, visit https://gerrit.asterisk.org/5964
To unsubscribe, visit https://gerrit.asterisk.org/settings
Gerrit-Project: asterisk
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I17bd5f3621514152a7b2b263c801324c5e96568b
Gerrit-Change-Number: 5964
Gerrit-PatchSet: 1
Gerrit-Owner: George Joseph <gjoseph at digium.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-code-review/attachments/20170705/a706bdbc/attachment.html>
More information about the asterisk-code-review
mailing list