I\'ve one .DRL file which has say 10 rules. Once I insert a fact, some rules may be matched- how do I find out which rules were matched programmatically?
You can print info about rule executed from DRL file itself using RuleContext:drools
System.out.println(drools.getRule().getName())