Skip to content

Commit 04421c4

Browse files
author
Joe Wagner
committed
Update logging to check DEBUG env
1 parent 467bd75 commit 04421c4

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

jobQueue.js

+7-4
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,19 @@ JobQueue.prototype.doJob = function (name, data) {
3030
this.queue.add(name, data).then(job => {
3131

3232
const completed = (result) => {
33-
// event data is alwasy passed as the result of JSON.stringify
33+
// event data is always passed as the result of JSON.stringify
3434
// We need to attempt to JSON.parse it
3535
// NOTE: even if the result of the job is a String it's still given to JSON.stringify,
3636
// which wraps the string in quotes, but JSON.parse must still be called to unwrap
3737
// the quotes surrounding the original String
3838
try {
3939
result = JSON.parse(result);
4040
} catch (err) {
41-
console.error(err);
42-
console.log('\ncould not `JSON.parse` job result ' + job.id + '\n');
43-
console.log(result);
41+
if (process.env.DEBUG === 'bullrack') {
42+
console.error(err);
43+
console.log('\ncould not `JSON.parse` job result ' + job.id + '\n');
44+
console.log(result);
45+
}
4446
}
4547
resolve(result);
4648

@@ -49,6 +51,7 @@ JobQueue.prototype.doJob = function (name, data) {
4951
};
5052

5153
const failed = (err) => {
54+
// It seems that Bull passes the error as a string
5255
if (typeof err === 'string') err = new Error(err);
5356

5457
reject(err);

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bullrack",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"description": "Wraps Bull.js with and API that returns the result of a specific job",
55
"main": "jobQueue.js",
66
"scripts": {

0 commit comments

Comments
 (0)