Don't log normal behaviour in the aggregator data path

master
Nicholas Brown 2019-02-20 18:11:22 +00:00
parent 0f98329a02
commit fd82f2d280
1 changed files with 2 additions and 2 deletions

View File

@ -435,7 +435,7 @@ int Rule::dataRecordMatches(IpfixDataRecord* record) {
*/
/* no corresponding data field or fixed data field found, this flow cannot match */
msg(LOG_DEBUG, "No corresponding DataDataRecord field for RuleField of type %s", ruleField->type.toString().c_str());
DPRINTF_INFO("No corresponding DataDataRecord field for RuleField of type %s", ruleField->type.toString().c_str());
return 0;
}
/* if a non-discarding rule field specifies no pattern, check at least if the data field exists */
@ -454,7 +454,7 @@ int Rule::dataRecordMatches(IpfixDataRecord* record) {
if (ruleField->type==InformationElement::IeInfo(IPFIX_ETYPEID_anonymisationType, IPFIX_PEN_vermont))
continue;
msg(LOG_NOTICE, "No corresponding DataRecord field for RuleField of type %s", ruleField->type.toString().c_str());
DPRINTF_INFO("No corresponding DataRecord field for RuleField of type %s", ruleField->type.toString().c_str());
return 0;
}
}