Merge pull request #4544 from matrix-org/bwindels/increaserage-rc

Increase rageshake size limit to 5mb
pull/21833/head
Bruno Windels 2020-05-04 13:35:22 +00:00 committed by GitHub
commit d8ab1f0ddc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ limitations under the License.
const FLUSH_RATE_MS = 30 * 1000;
// the length of log data we keep in indexeddb (and include in the reports)
const MAX_LOG_SIZE = 1024 * 1024 * 1; // 1 MB
const MAX_LOG_SIZE = 1024 * 1024 * 5; // 5 MB
// A class which monkey-patches the global console and stores log lines.
class ConsoleLogger {