Skip to content

Commit

Permalink
add stderr logging
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBlueBurger committed Oct 14, 2023
1 parent 5480a1a commit 6a1bc4c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Server/test/testUtil.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ export default new class TestUtil {
r(1);
}
});
newProcess.stderr.on("data", m => {
console.log(`${this.testName} STDERR | ${m.toString()}`);
});
});
}
getDataPath() {
Expand Down

0 comments on commit 6a1bc4c

Please sign in to comment.