Increase debug logs

This commit is contained in:
Hillel Coren 2021-09-10 09:40:15 +03:00
parent ac62fe22d8
commit e767de1b13
1 changed files with 2 additions and 2 deletions

View File

@ -86,8 +86,8 @@ bool isValidDate(String input) {
}
void printWrapped(String text) {
if (text.length > 5000) {
text = text.substring(0, 5000);
if (text.length > 20000) {
text = text.substring(0, 20000);
}
final pattern = RegExp('.{1,800}'); // 800 is the size of each chunk