fix: increase recent logs buffer (#9143)

This commit is contained in:
Yury Semikhatsky 2021-09-24 17:28:06 -07:00 committed by GitHub
parent 418ce9c17e
commit 45b365d958
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -64,7 +64,7 @@ class DebugLogger {
export const debugLogger = new DebugLogger();
const kLogCount = 50;
const kLogCount = 150;
export class RecentLogsCollector {
private _logs: string[] = [];