Use correct method name in log statement
This commit is contained in:
parent
6ac19c2dd8
commit
bdee0c1431
|
@ -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 () {
|
||||
|
|
|
@ -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 })
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue