From 45b365d95833e0ab61bd49e0b98293542fbd12c0 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Fri, 24 Sep 2021 17:28:06 -0700 Subject: [PATCH] fix: increase recent logs buffer (#9143) --- 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 754509fd84..3f6fad4000 100644 --- a/src/utils/debugLogger.ts +++ b/src/utils/debugLogger.ts @@ -64,7 +64,7 @@ class DebugLogger { export const debugLogger = new DebugLogger(); -const kLogCount = 50; +const kLogCount = 150; export class RecentLogsCollector { private _logs: string[] = [];