xLog icon indicating copy to clipboard operation
xLog copied to clipboard

AndroidPrinter(true)使用自动换行功能,超长字符串打印不全

Open Rockets1080 opened this issue 4 years ago • 3 comments

image

Rockets1080 avatar Sep 01 '21 09:09 Rockets1080

应该取end 和newLine二者之间的最小值

Rockets1080 avatar Sep 01 '21 09:09 Rockets1080

应该end = newLine != -1 ? Math.min(end,newLine) : end;取代end = newLine != -1 ? newLine : end;

Rockets1080 avatar Sep 01 '21 09:09 Rockets1080

应该end = newLine != -1 ? Math.min(end,newLine) : end;取代end = newLine != -1 ? newLine : end;

You are right, can you create a PR?

elvishew avatar Sep 03 '21 11:09 elvishew