mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-02 15:17:03 +02:00
Log matched rules
This commit is contained in:
@@ -260,8 +260,12 @@ public class EntityRule {
|
||||
} else
|
||||
matched = haystack.toLowerCase().contains(needle.trim().toLowerCase());
|
||||
|
||||
Log.i("Rule=" + name + " matched=" + matched +
|
||||
" needle=" + needle + " haystack=" + haystack + " regex=" + regex);
|
||||
if (matched)
|
||||
EntityLog.log(context, "Rule=" + name + ":" + order + " matched " +
|
||||
" needle=" + needle + " haystack=" + haystack + " regex=" + regex);
|
||||
else
|
||||
Log.i("Rule=" + name + ":" + order + " matched=" + matched +
|
||||
" needle=" + needle + " haystack=" + haystack + " regex=" + regex);
|
||||
return matched;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user