From bdee0c143130af69fa4d3ba41166ddd581a22f38 Mon Sep 17 00:00:00 2001 From: mmcwilliams Date: Wed, 30 Oct 2019 23:58:52 -0400 Subject: [PATCH] Use correct method name in log statement --- lib/sequence/index.js | 2 +- src/sequence/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 }) } }