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

@@ -43,7 +43,7 @@ bool FairMQExampleMTSampler1::ConditionalRun()
if (fMaxIterations > 0 && ++fNumIterations >= fMaxIterations)
{
LOG(INFO) << "Configured maximum number of iterations reached. Leaving RUNNING state.";
LOG(info) << "Configured maximum number of iterations reached. Leaving RUNNING state.";
return false;
}
@@ -69,7 +69,7 @@ void FairMQExampleMTSampler1::ListenForAcks()
++numAcks;
}
LOG(INFO) << "Acknowledged " << numAcks << " messages";
LOG(info) << "Acknowledged " << numAcks << " messages";
}
FairMQExampleMTSampler1::~FairMQExampleMTSampler1()