Avoid logging body text

This was meant for debugging and is otherwise pretty noisy
This commit is contained in:
Alex Crichton 2018-07-06 19:37:18 -07:00
parent bc01d6cd61
commit b66095bcff

View File

@ -105,18 +105,6 @@ async function main() {
console.log(` ${line}`);
});
}
const bodyText = await logged(
"getting browser body",
body.getText()
);
if (bodyText.length > 0) {
console.log("body:");
bodyText.split("\n").forEach(line => {
console.log(` ${line}`);
});
}
}
}