From aa87e84652e9f2377a24eeaea7b9f5c75a35b98a Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Mon, 4 May 2020 13:40:52 +0200 Subject: [PATCH] increare rage shake size limit to 5mb --- src/rageshake/rageshake.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rageshake/rageshake.js b/src/rageshake/rageshake.js index a9d17e77c9..59ed5fa8b7 100644 --- a/src/rageshake/rageshake.js +++ b/src/rageshake/rageshake.js @@ -41,7 +41,7 @@ limitations under the License. const FLUSH_RATE_MS = 30 * 1000; // the length of log data we keep in indexeddb (and include in the reports) -const MAX_LOG_SIZE = 1024 * 1024 * 1; // 1 MB +const MAX_LOG_SIZE = 1024 * 1024 * 5; // 5 MB // A class which monkey-patches the global console and stores log lines. class ConsoleLogger {