make logging more quiet

This commit is contained in:
badaix 2019-10-09 22:44:58 +02:00
parent f8c9c2e890
commit 78b479af7f
3 changed files with 2 additions and 3 deletions

View file

@ -53,7 +53,7 @@ void ControlSessionTcp::do_read()
{
if (line.back() == '\r')
line.resize(line.size() - 1);
LOG(INFO) << "received: " << line << "\n";
LOG(DEBUG) << "received: " << line << "\n";
if ((message_receiver_ != nullptr) && !line.empty())
{
string response = message_receiver_->onMessageReceived(this, line);