summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/db.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/db.js b/lib/db.js
index 4c51c291..1ac6f0e1 100644
--- a/lib/db.js
+++ b/lib/db.js
@@ -85,7 +85,8 @@ function readFromDB(id, callback) {
} else {
//logger.info(result.rows);
if (result.rows.length <= 0) {
- callback("not found note in db: " + util.inspect(id), null);
+ callback("not found note in db", null);
+ return logger.error("not found note in db: " + id, err);
} else {
if(config.debug)
logger.info("read from db success");