Small adjustments for the new logger.

Both FairMQLogger and FairMQStateMachine use Boost Fusion internaly.
Because the state machine needs FUSION_MAX_VECTOR_SIZE 20 defined,
same value has to be defined in the logger, otherwise Fusion is not
properly compiled.
This commit is contained in:
Alexey Rybalchenko
2015-09-11 15:38:16 +02:00
committed by Mohammad Al-Turany
parent 5136c88d3a
commit 54e1777c00
4 changed files with 14 additions and 13 deletions

View File

@@ -13,7 +13,7 @@
*/
#include "FairMQParser.h"
#include "FairLogger.h"
#include "FairMQLogger.h"
#include <boost/property_tree/xml_parser.hpp>
// WARNING : pragma commands to hide boost (1.54.0) warning
@@ -171,7 +171,7 @@ FairMQMap ptreeToMQMap(const boost::property_tree::ptree& pt, const string& devi
if (channelMap.size() > 0)
{
LOG(DEBUG) << "---- Channel-keys found are :";
for (const auto& p : MQChannelMap)
for (const auto& p : channelMap)
{
LOG(DEBUG) << p.first;
}