aboutsummaryrefslogtreecommitdiff
path: root/node_simple.js
diff options
context:
space:
mode:
authornanalelfe <nargiza.nosirova@mail.utoronto.ca>2016-07-25 11:04:14 +0000
committernanalelfe <nargiza.nosirova@mail.utoronto.ca>2016-07-25 11:04:14 +0000
commit9f1b0d9f1c807e02a415b5b8a2509dc6445f08b3 (patch)
tree5fd3a0687e68c92bd4aac964acd949fbfd666f8d /node_simple.js
parentbca90452150c6a128f88765d04481a0235059af3 (diff)
parentc7bec051d61d66925d68be8661aaf52b011dedac (diff)
merged
Diffstat (limited to 'node_simple.js')
-rw-r--r--node_simple.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/node_simple.js b/node_simple.js
index 2eab34c..165eb22 100644
--- a/node_simple.js
+++ b/node_simple.js
@@ -330,7 +330,6 @@ exports.retrieve_userComments_history = function (username, callback) {
// get a connection
mongoFactory.getConnection(uri).then(function (db) {
- console.log("for Each here");
var solutions = db.collection('solutions');
var exams = db.collection('exams');
var mylist = [];
@@ -367,9 +366,7 @@ exports.retrieve_userComments_history = function (username, callback) {
});
function doCall() {
- console.log("Am i inside the doCall()");
callback(true, mylist);
- console.log("IN NODE SIMPLE: " + mylist);
}