aboutsummaryrefslogtreecommitdiff
path: root/node_simple.js
diff options
context:
space:
mode:
authorHumairAK <humair88@hotmail.com>2016-07-26 20:44:06 +0000
committerHumairAK <humair88@hotmail.com>2016-07-26 20:44:06 +0000
commit9c10936cf1420f160a5007c6baad7b25ffb6d014 (patch)
treed3fb09efa5dc25cfe63eb6c4c783f415cba45597 /node_simple.js
parent3983edb2518acd91f991ad5fc6308bcaf46700f5 (diff)
Added more unit tests, fixed some bugs in the code, fixed voting alert prompts and redirects
Diffstat (limited to 'node_simple.js')
-rw-r--r--node_simple.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/node_simple.js b/node_simple.js
index 228e861..dced853 100644
--- a/node_simple.js
+++ b/node_simple.js
@@ -599,7 +599,6 @@ exports.retrieveUser = function (username, callback) {
}
else if (result.length) {
- console.log("retreive User: " + result[0]);
callback(true, false, result[0], "User retrieved");
}
@@ -1229,7 +1228,6 @@ exports.get_exam_byID = function (id, callback) {
}
else {
callback(true, false, docs[0]);
- console.log("DOCS: "+ docs);
}
});
})