Lower log level

This commit is contained in:
badaix 2021-06-04 16:58:11 +02:00
parent 76a9cc4228
commit 5b9321b8c6
2 changed files with 2 additions and 2 deletions

View file

@ -116,7 +116,7 @@ void ControlSessionTcp::send_next()
} }
else else
{ {
LOG(DEBUG, LOG_TAG) << "Wrote " << length << " bytes to control socket\n"; LOG(TRACE, LOG_TAG) << "Wrote " << length << " bytes to control socket\n";
} }
if (!messages_.empty()) if (!messages_.empty())
send_next(); send_next();

View file

@ -85,7 +85,7 @@ void ControlSessionWebsocket::send_next()
} }
else else
{ {
LOG(DEBUG, LOG_TAG) << "Wrote " << length << " bytes to web socket\n"; LOG(TRACE, LOG_TAG) << "Wrote " << length << " bytes to web socket\n";
} }
if (!messages_.empty()) if (!messages_.empty())
send_next(); send_next();