We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35f9fd2 commit 5415582Copy full SHA for 5415582
lib/common/mobile/device-log-provider.ts
@@ -155,7 +155,7 @@ export class DeviceLogProvider extends DeviceLogProviderBase {
155
156
// console.log(prefix, fullLine);
157
// return;
158
- if (fullLine.length < maxWidth) {
+ if (!maxWidth || maxWidth < 10 || fullLine.length < maxWidth) {
159
console.log(prefix, fullLine);
160
} else {
161
for (let i = 0; i < fullLine.length; i += maxWidth) {
0 commit comments