diff --git a/lib/sequence/index.js b/lib/sequence/index.js index fc2ebd8..40e67de 100644 --- a/lib/sequence/index.js +++ b/lib/sequence/index.js @@ -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 () { diff --git a/src/sequence/index.ts b/src/sequence/index.ts index 509b1b5..4db2cd8 100644 --- a/src/sequence/index.ts +++ b/src/sequence/index.ts @@ -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 }) } }