Skip to content

Commit 277edbe

Browse files
committed
more logs...
1 parent a29e85d commit 277edbe

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

dev-packages/node-overhead-gh-action/lib/getOverheadMeasurements.mjs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,14 @@ async function getMeasurements(instrumentFile) {
1717

1818
log('Child process started, waiting for example app...');
1919

20+
appProcess.stderr.on('data', data => {
21+
log(`appProcess stderr: ${data}`);
22+
});
23+
24+
appProcess.on('exit', code => {
25+
log(`appProcess exited with code ${code}`);
26+
});
27+
2028
await new Promise(resolve => {
2129
appProcess.stdout.on('data', data => {
2230
log(`appProcess: ${data}`);

0 commit comments

Comments
 (0)