Fixed readFromDB error might cause excpection

This commit is contained in:
Wu Cheng-Han 2015-12-11 00:16:09 -06:00
parent debcfdef14
commit 3fa264a43a
1 changed files with 2 additions and 1 deletions

View File

@ -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");