Debug: prevent cursor window full

This commit is contained in:
M66B 2024-05-19 13:22:48 +02:00
parent 0703bb232d
commit 720649957a
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ public class FragmentLogs extends FragmentBase {
super.onActivityCreated(savedInstanceState);
long from = new Date().getTime() - 24 * 3600 * 1000L;
int limit = (BuildConfig.DEBUG ? 10000 : 2000);
int limit = (BuildConfig.DEBUG ? 5000 : 2000);
DB db = DB.getInstance(getContext());
db.log().liveLogs(from, limit, null).observe(getViewLifecycleOwner(), new Observer<List<EntityLog>>() {