Add some debug to find rules that stop.

This commit is contained in:
James Cole
2025-11-07 20:37:48 +01:00
parent 49d3b11f86
commit 33e6a44d6f
2 changed files with 5 additions and 5 deletions

View File

@@ -278,7 +278,7 @@ class SearchRuleEngine implements RuleEngineInterface
++$count;
// if trigger says stop processing, do so.
if (true === $ruleTrigger->stop_processing && $result->count() > 0) {
Log::debug('The trigger says to stop processing, so stop processing other triggers.');
Log::debug('The trigger in this rule trigger says to stop processing, so stop processing other triggers.');
break;
}