Skip to content

Commit b25f731

Browse files
committed
Log stderr to console
1 parent 741c7a8 commit b25f731

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

monitor/dist/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121878,8 +121878,7 @@ async function run() {
121878121878
}
121879121879
})
121880121880
command.stderr.on('data', output => {
121881-
if (debug)
121882-
core.warning(output.toString())
121881+
console.log(`stderr: ${output.toString()}`)
121883121882
})
121884121883
command.on('exit', code => {
121885121884
if (code !== 0) {

monitor/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,7 @@ async function run() {
136136
}
137137
})
138138
command.stderr.on('data', output => {
139-
if (debug)
140-
core.warning(output.toString())
139+
console.log(`stderr: ${output.toString()}`)
141140
})
142141
command.on('exit', code => {
143142
if (code !== 0) {

0 commit comments

Comments
 (0)