convert log severities use to lowercase and remove use of MQLOG

This commit is contained in:
Alexey Rybalchenko
2017-12-22 10:40:50 +01:00
committed by Mohammad Al-Turany
parent 500d509324
commit 2c2fc8e0a6
22 changed files with 44 additions and 44 deletions

View File

@@ -20,7 +20,7 @@ FairMQExample2Processor::FairMQExample2Processor()
bool FairMQExample2Processor::HandleData(FairMQMessagePtr& msg, int /*index*/)
{
LOG(INFO) << "Received data, processing...";
LOG(info) << "Received data, processing...";
// Modify the received string
string* text = new std::string(static_cast<char*>(msg->GetData()), msg->GetSize());