From 3c126024ca88c09bfab9714e8290a4182797a336 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Mon, 26 Apr 2021 13:58:52 -0700 Subject: [PATCH] fix: increas recent logs buffer (#6330) --- 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 a2485c982a..8c83b719ca 100644 --- a/src/utils/debugLogger.ts +++ b/src/utils/debugLogger.ts @@ -62,7 +62,7 @@ class DebugLogger { export const debugLogger = new DebugLogger(); -const kLogCount = 50; +const kLogCount = 500; export class RecentLogsCollector { private _logs: string[] = [];