1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-21 23:32:51 +00:00

Improved logging

This commit is contained in:
M66B 2024-12-12 19:08:26 +01:00
parent 7b505a467d
commit 2d24956bec

View file

@ -472,6 +472,7 @@ public class UriHelper {
try (InputStream is = context.getAssets().open("debounce.json")) {
String json = Helper.readStream(is);
JSONArray jbounce = new JSONArray(json);
Log.i("Brave debounces=" + jbounce.length());
for (int i = 0; i < jbounce.length(); i++) {
JSONObject jitem = jbounce.getJSONObject(i);
JSONArray jinclude = jitem.getJSONArray("include");