From 4e61728a6a05156ae7e18cfb2ccc74bcf1fc4825 Mon Sep 17 00:00:00 2001 From: Wu Cheng-Han Date: Tue, 14 Jul 2015 23:52:24 +0800 Subject: [PATCH] JSON.stringify error object for logging --- lib/db.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/db.js b/lib/db.js index e0f873e..c62be7a 100644 --- a/lib/db.js +++ b/lib/db.js @@ -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");