Skip to content

Commit 027d3d2

Browse files
vicbdario-piotrowicz
authored andcommitted
refactor(wrangler): runWranglerDev always log error (#7907)
1 parent 57a0f33 commit 027d3d2

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

fixtures/shared/src/run-wrangler-long-lived.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,7 @@ async function runLongLivedWrangler(
8787
chunks.push(chunk);
8888
});
8989
wranglerProcess.stderr?.on("data", (chunk) => {
90-
if (process.env.WRANGLER_LOG === "debug") {
91-
console.log(`[${command}]`, chunk.toString());
92-
}
90+
console.log(`[${command}]`, chunk.toString());
9391
chunks.push(chunk);
9492
});
9593
const getOutput = () => Buffer.concat(chunks).toString();

0 commit comments

Comments
 (0)