Improved logging

pull/217/head
M66B 9 months ago
parent 7b505a467d
commit 2d24956bec

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

Loading…
Cancel
Save