aboutsummaryrefslogtreecommitdiff
path: root/node_simple.js
diff options
context:
space:
mode:
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);
}
});
})