From 1d4c45c5d9664f7fabd49c96b410f79bfee70aa5 Mon Sep 17 00:00:00 2001 From: Joe Fleming Date: Tue, 28 Jun 2016 18:28:12 -0700 Subject: [PATCH] fix worker debug output --- src/worker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/worker.js b/src/worker.js index c61b4a4..508836e 100644 --- a/src/worker.js +++ b/src/worker.js @@ -27,7 +27,7 @@ export default class Job extends events.EventEmitter { this.debug = (...msg) => debug(...msg, `id: ${this.id}`); this._checker = false; - this.debug(`Created worker for type ${this.type}`); + this.debug(`Created worker for job type ${this.jobtype}`); this._startJobPolling(); }