feat: raise log line limit to 2000

This commit is contained in:
bwees 2025-08-04 16:39:47 -05:00
parent fad5114c1c
commit 7523fc2521
No known key found for this signature in database

View File

@ -3,7 +3,7 @@ const double downloadCompleted = -1;
const double downloadFailed = -2;
// Number of log entries to retain on app start
const int kLogTruncateLimit = 250;
const int kLogTruncateLimit = 2000;
// Sync
const int kSyncEventBatchSize = 5000;