From d20480dcb0e36756f6a2e31cf9b120081a672c27 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Mon, 26 Apr 2021 15:48:29 -0700 Subject: [PATCH] Revert "fix: increas recent logs buffer (#6330)" This reverts commit 3c126024ca88c09bfab9714e8290a4182797a336. --- src/utils/debugLogger.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/debugLogger.ts b/src/utils/debugLogger.ts index 8c83b719ca97b..a2485c982a3de 100644 --- a/src/utils/debugLogger.ts +++ b/src/utils/debugLogger.ts @@ -62,7 +62,7 @@ class DebugLogger { export const debugLogger = new DebugLogger(); -const kLogCount = 500; +const kLogCount = 50; export class RecentLogsCollector { private _logs: string[] = [];