1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-26 01:36:55 +00:00

Reduce logging

This commit is contained in:
M66B 2018-10-24 09:11:21 +00:00
parent 61441c3c8a
commit 688a661c5d

View file

@ -707,7 +707,8 @@ public class AdapterMessage extends PagedListAdapter<TupleMessageEx, AdapterMess
}, new Html.TagHandler() { }, new Html.TagHandler() {
@Override @Override
public void handleTag(boolean opening, String tag, Editable output, XMLReader xmlReader) { public void handleTag(boolean opening, String tag, Editable output, XMLReader xmlReader) {
Log.i(Helper.TAG, "HTML tag=" + tag + " opening=" + opening); if (BuildConfig.DEBUG)
Log.i(Helper.TAG, "HTML tag=" + tag + " opening=" + opening);
} }
}); });
} }