summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorSean Fridman <fridman@mail.sfsu.edu>2015-04-09 13:04:00 -0400
committerSean Fridman <fridman@mail.sfsu.edu>2015-04-09 13:04:00 -0400
commit70591083a1f7ea9ecf511b62d6a0a010a8da8c24 (patch)
tree4058999e95fd5999abecb60128932166d92a77b6 /app
parent89b9693aaa02ee80be0e4efdf9cad8b1d0fe7978 (diff)
Stray console.log
Diffstat (limited to 'app')
-rw-r--r--app/node_modules/okquery/index.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/app/node_modules/okquery/index.js b/app/node_modules/okquery/index.js
index 33a49c4..2d93e2a 100644
--- a/app/node_modules/okquery/index.js
+++ b/app/node_modules/okquery/index.js
@@ -67,7 +67,6 @@ function queryComplex(resource, query) {
if (notDynamic) {
return function() {
- console.log('get it!', query)
return resource.find(query);
}
} else {
@@ -75,7 +74,6 @@ function queryComplex(resource, query) {
var dynamicQuery = {};
dynamicQuery[dynamicProp] = id;
var query = assign({}, query, dynamicQuery);
- console.log('get it!', query)
return resource.find(query);
}
}