JSON.stringify error object for logging

This commit is contained in:
Wu Cheng-Han 2015-07-14 23:52:24 +08:00
parent 1b92300445
commit 4e61728a6a

View file

@ -85,7 +85,7 @@ function readFromDB(id, callback) {
} else {
//logger.info(result.rows);
if (result.rows.length <= 0) {
callback("not found note in db: " + id, null);
callback("not found note in db: " + JSON.stringify(id), null);
} else {
if(config.debug)
logger.info("read from db success");