Remove console.log

This commit is contained in:
Typicode
2015-05-25 11:34:27 +02:00
parent bc59f2bb87
commit f50c9eb980
2 changed files with 1 additions and 3 deletions

View File

@ -101,8 +101,7 @@ module.exports = function (source) {
filters[key] = utils.toNative(req.query[key])
}
}
console.log(filters)
console.log()
// Filter
if (_(filters).isEmpty()) {
array = db(req.params.resource).value()

View File

@ -44,7 +44,6 @@ function createId (coll) {
// Example: a comment that references a post that doesn't exist
function getRemovable (db) {
var removable = []
console.log(db)
_(db).each(function (coll, collName) {
_(coll).each(function (doc) {
_(doc).each(function (value, key) {