Skip to content

Commit

Permalink
Fix runner status log reporting (#731)
Browse files Browse the repository at this point in the history
* Fix runner status log reporting

* Fix linter "mistake"
  • Loading branch information
0x2b3bfa0 authored Sep 22, 2021
1 parent 4508871 commit 30d754c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/cml/runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ const runLocal = async (opts) => {

const dataHandler = async (data) => {
const log = await cml.parseRunnerLog({ data });
log && winston.debug(JSON.stringify(log));
log && winston.info('runner log', log);

if (log && log.status === 'job_started') {
RUNNER_JOBS_RUNNING.push({ id: log.job, date: log.date });
Expand Down

0 comments on commit 30d754c

Please sign in to comment.