From b66095bcff96c230e8a77ad7da8d6358dd2de001 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Fri, 6 Jul 2018 19:37:18 -0700 Subject: [PATCH] Avoid logging body text This was meant for debugging and is otherwise pretty noisy --- crates/test-project-builder/src/run-headless.js | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/crates/test-project-builder/src/run-headless.js b/crates/test-project-builder/src/run-headless.js index 9775288e..0521a28b 100644 --- a/crates/test-project-builder/src/run-headless.js +++ b/crates/test-project-builder/src/run-headless.js @@ -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}`); - }); - } } }