mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-07 14:35:47 +01:00
Cleanup console.log calls
Can't see my debugging inbetween all your debugging ;)
This commit is contained in:
@@ -227,15 +227,12 @@ var RDB = require('./redis'),
|
|||||||
|
|
||||||
async.waterfall([
|
async.waterfall([
|
||||||
function(next) {
|
function(next) {
|
||||||
console.log('parsing');
|
|
||||||
plugins.fireHook('filter:post.parse', raw, next);
|
plugins.fireHook('filter:post.parse', raw, next);
|
||||||
},
|
},
|
||||||
function(parsed, next) {
|
function(parsed, next) {
|
||||||
console.log('footering');
|
|
||||||
plugins.fireHook('filter:post.buildFooter', parsed, next);
|
plugins.fireHook('filter:post.buildFooter', parsed, next);
|
||||||
}
|
}
|
||||||
], function(err, parsed) {
|
], function(err, parsed) {
|
||||||
console.log('doneing');
|
|
||||||
callback(null, !err ? parsed : raw);
|
callback(null, !err ? parsed : raw);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -247,4 +244,4 @@ var RDB = require('./redis'),
|
|||||||
callback(null, !err ? parsedSignature : raw);
|
callback(null, !err ? parsedSignature : raw);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}(exports));
|
}(exports));
|
||||||
|
|||||||
Reference in New Issue
Block a user