Using util.inspect instead of JSON.stringify to avoid "TypeError: Converting circular structure to JSON"

This commit is contained in:
Wu Cheng-Han 2015-07-16 08:47:33 +08:00
parent 4e61728a6a
commit 57253d28a7

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: " + JSON.stringify(id), null);
callback("not found note in db: " + util.inspect(id), null);
} else {
if(config.debug)
logger.info("read from db success");