fix: increas recent logs buffer (#6330)

This commit is contained in:
Yury Semikhatsky 2021-04-26 13:58:52 -07:00 committed by GitHub
parent a51dc50d85
commit 3c126024ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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