Skip to content

Commit

Permalink
better logs
Browse files Browse the repository at this point in the history
  • Loading branch information
soulgalore committed May 25, 2024
1 parent b53510a commit 46333f3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion testrunner/src/testrunners/docker-testrunner.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default async function runJob(job) {
logger,
dockerLogger
);
logger.info('Finished with job');
logger.info('Finished with job with exit code: ' + testResult.exitCode);
const resultQueue = await queueHandler.getQueue('result');
let runTime = testResult.result.timestamp;
if (
Expand Down Expand Up @@ -174,6 +174,7 @@ async function runDocker(

await process;
} catch (error) {
logger.error('Could not run Docker:' + error);
exitCode = error.exitCode;
}

Expand Down

0 comments on commit 46333f3

Please sign in to comment.