]> git.mxchange.org Git - flightgear.git/commitdiff
httpd: downgrade log message
authorTorsten Dreyer <torsten@ŧ3r.de>
Mon, 15 Sep 2014 08:54:00 +0000 (10:54 +0200)
committerTorsten Dreyer <torsten@ŧ3r.de>
Mon, 15 Sep 2014 08:54:00 +0000 (10:54 +0200)
src/Network/http/httpd.cxx

index 99bcfa69a8443a36717317eafc848b25b0a13dd7..3200fdf7646e59488f418312a17e52f476dcca16 100644 (file)
@@ -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());
   }