Skip to content

Commit 0b8c640

Browse files
committed
Update index.ts
1 parent 84bacc4 commit 0b8c640

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ async function run(): Promise<void> {
113113
stdout: (data: Buffer) => {
114114
const text = data.toString();
115115
uploadStdout += text;
116-
core.info(text.trimEnd());
116+
// Do not re-echo stdout here to avoid duplicate logs; Wrangler already prints to the console.
117117
},
118118
stderr: (data: Buffer) => {
119119
const text = data.toString();
@@ -194,7 +194,7 @@ async function run(): Promise<void> {
194194
stdout: (data: Buffer) => {
195195
const text = data.toString();
196196
deployStdout += text;
197-
core.info(text.trimEnd());
197+
// Do not re-echo stdout here to avoid duplicate logs; Wrangler already prints to the console.
198198
},
199199
stderr: (data: Buffer) => {
200200
const text = data.toString();

0 commit comments

Comments
 (0)