Fix typos in log messages

This commit is contained in:
Felix Geyer 2020-02-01 22:36:21 +01:00 committed by Johannes Pohl
parent a8bfc32be5
commit 322f270839
3 changed files with 3 additions and 3 deletions

View file

@ -134,7 +134,7 @@ void StreamSession::send_next()
messages_.pop_front();
if (ec)
{
LOG(ERROR, LOG_TAG) << "StreamSession write error (msg lenght: " << length << "): " << ec.message() << "\n";
LOG(ERROR, LOG_TAG) << "StreamSession write error (msg length: " << length << "): " << ec.message() << "\n";
messageReceiver_->onDisconnect(this);
return;
}