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
parent 6d97b86d37
commit b3292252bf
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()

View File

@@ -36,7 +36,7 @@ bool FairMQExampleMTSampler2::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;
}

View File

@@ -64,7 +64,7 @@ bool FairMQExampleMTSink::CheckIterations()
{
if (fNumIterations1 >= fMaxIterations && fNumIterations2 >= fMaxIterations)
{
LOG(INFO) << "Configured maximum number of iterations reached & Received messages from both sources. Leaving RUNNING state.";
LOG(info) << "Configured maximum number of iterations reached & Received messages from both sources. Leaving RUNNING state.";
return false;
}
}