Skip to content

Commit

Permalink
Add logging when container fails to start
Browse files Browse the repository at this point in the history
  • Loading branch information
backspace committed Jan 22, 2024
1 parent d289e7e commit fdeb663
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/matrix/docker/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ export function dockerRun(args: {
],
(err, stdout) => {
if (err) {
console.log('Error running docker container');
console.log(err);
reject(err);
}
resolve(stdout.trim());
Expand Down

0 comments on commit fdeb663

Please sign in to comment.