From 4475ff26481bfc741490b1a20a69ceb4c7340b93 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Fri, 24 Sep 2021 15:25:14 -0700 Subject: [PATCH 1/2] fix: increase recent logs buffer --- 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 754509fd8491f..af199ca5d1ccf 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 = 500; export class RecentLogsCollector { private _logs: string[] = []; From 3375fb583c72aee03a867e8f9c3dd0548079e8c4 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Fri, 24 Sep 2021 16:32:23 -0700 Subject: [PATCH 2/2] reduce to 150 --- 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 af199ca5d1ccf..3f6fad4000b42 100644 --- a/src/utils/debugLogger.ts +++ b/src/utils/debugLogger.ts @@ -64,7 +64,7 @@ class DebugLogger { export const debugLogger = new DebugLogger(); -const kLogCount = 500; +const kLogCount = 150; export class RecentLogsCollector { private _logs: string[] = [];