mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-30 19:56:10 +00:00
Reduced logging
This commit is contained in:
parent
717a1f336b
commit
d7ca03cfbb
1 changed files with 2 additions and 5 deletions
|
@ -191,11 +191,8 @@ public class EntityRule {
|
||||||
} else
|
} else
|
||||||
matched = haystack.toLowerCase().contains(needle.trim().toLowerCase());
|
matched = haystack.toLowerCase().contains(needle.trim().toLowerCase());
|
||||||
|
|
||||||
EntityLog.log(context, "Rule=" + name +
|
Log.i("Rule=" + name + " matched=" + matched +
|
||||||
" matched=" + matched +
|
" needle=" + needle + " haystack=" + haystack + " regex=" + regex);
|
||||||
" needle=" + needle +
|
|
||||||
" haystack=" + haystack +
|
|
||||||
" regex=" + regex);
|
|
||||||
return matched;
|
return matched;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue