From: Torsten Dreyer Date: Mon, 15 Sep 2014 08:54:00 +0000 (+0200) Subject: httpd: downgrade log message X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c9d159e71f3514db8a9db12564f938582d3183c9;p=flightgear.git httpd: downgrade log message --- diff --git a/src/Network/http/httpd.cxx b/src/Network/http/httpd.cxx index 99bcfa69a..3200fdf76 100644 --- a/src/Network/http/httpd.cxx +++ b/src/Network/http/httpd.cxx @@ -361,7 +361,7 @@ int RegularConnection::request(struct mg_connection * connection) mg_send_header(connection, name.c_str(), value.c_str()); } if (done || false == response.Content.empty()) { - SG_LOG(SG_NETWORK, SG_ALERT, + SG_LOG(SG_NETWORK, SG_INFO, "RegularConnection::request() responding " << response.Content.length() << " Bytes, done=" << done); mg_send_data(connection, response.Content.c_str(), response.Content.length()); }