1
0
Fork 0

httpd: downgrade log message

This commit is contained in:
Torsten Dreyer 2014-09-15 10:54:00 +02:00
parent 512ec61e8e
commit c9d159e71f

View 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());
}