1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-11 20:22:36 +03:00

increare rage shake size limit to 5mb

This commit is contained in:
Bruno Windels
2020-05-04 13:40:52 +02:00
parent 98b418a809
commit aa87e84652

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 {