From 5be005b1c6f92113075a0df289f74ec61c683ed8 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Mon, 26 Apr 2021 16:20:49 -0700 Subject: [PATCH] Revert "fix: increas recent logs buffer (#6330)" (#6332) 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 8c83b719ca..a2485c982a 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[] = [];