Skip to content

Commit

Permalink
added logging of hc sandbox errors (#301)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthme authored Nov 28, 2024
1 parent 43d5e9e commit eb0c72a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/e2e/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ export const launch = async (port: number) => {

let conductorDir = "";
const createConductorPromise = new Promise<void>((resolve) => {
createConductorProcess.stderr.on("data", (data) => {
console.error("[hc sandbox] ERROR: ", data.toString());
});
createConductorProcess.stdout.on("data", (data) => {
const tmpDirMatches = data.toString().match(/Created.+"(.+)"/);
if (tmpDirMatches) {
Expand Down

0 comments on commit eb0c72a

Please sign in to comment.