We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a29e85d commit 277edbeCopy full SHA for 277edbe
dev-packages/node-overhead-gh-action/lib/getOverheadMeasurements.mjs
@@ -17,6 +17,14 @@ async function getMeasurements(instrumentFile) {
17
18
log('Child process started, waiting for example app...');
19
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
28
await new Promise(resolve => {
29
appProcess.stdout.on('data', data => {
30
log(`appProcess: ${data}`);
0 commit comments