From 7523fc2521f9af15cf861808153cca9c6252a55d Mon Sep 17 00:00:00 2001 From: bwees Date: Mon, 4 Aug 2025 16:39:47 -0500 Subject: [PATCH] feat: raise log line limit to 2000 --- mobile/lib/constants/constants.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/lib/constants/constants.dart b/mobile/lib/constants/constants.dart index b3d9d138c4..3386433303 100644 --- a/mobile/lib/constants/constants.dart +++ b/mobile/lib/constants/constants.dart @@ -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;