Increase debug logs
This commit is contained in:
parent
ac62fe22d8
commit
e767de1b13
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue