"Group is" condition pollutes log with debug looking messages
CRM_CivirulesConditions_GroupContact_GroupId::isConditionValid()
logs with info level that condition was called. This generates a lot of messages as it logs when condition was false also.
I believe it's a leftover from debugging that got merged accidentally, so I think it could just simply removed or wrapped in
if ($triggerData->getTrigger()->getRuleDebugEnabled()) {
at least.