1
0
mirror of https://github.com/fluencelabs/wasm-bindgen synced 2025-04-03 02:41:06 +00:00

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

@ -105,18 +105,6 @@ async function main() {
console.log(` ${line}`); 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}`);
});
}
} }
} }