1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-29 03:05:31 +00:00

Reduced logging

This commit is contained in:
M66B 2019-07-08 16:47:16 +02:00
parent 717a1f336b
commit d7ca03cfbb

View file

@ -191,11 +191,8 @@ public class EntityRule {
} else
matched = haystack.toLowerCase().contains(needle.trim().toLowerCase());
EntityLog.log(context, "Rule=" + name +
" matched=" + matched +
" needle=" + needle +
" haystack=" + haystack +
" regex=" + regex);
Log.i("Rule=" + name + " matched=" + matched +
" needle=" + needle + " haystack=" + haystack + " regex=" + regex);
return matched;
}