Use correct method name in log statement

This commit is contained in:
mmcwilliams 2019-10-30 23:58:52 -04:00
parent 6ac19c2dd8
commit bdee0c1431
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ class Sequence {
this.active = false;
this.count = 0;
this.delay = 0;
log.info('start', { id: this.id, stopped: true });
log.info('_stop', { id: this.id, stopped: true });
};
this.intval = intval;
this.intval.sequence = function () {

View File

@ -104,7 +104,7 @@ export class Sequence {
this.count = 0
this.delay = 0
log.info('start', { id : this.id, stopped : true })
log.info('_stop', { id : this.id, stopped : true })
}
}