From bd8a0a892fa1580c279858390d2570d77400428d Mon Sep 17 00:00:00 2001 From: forestjohnsonilm Date: Fri, 5 Feb 2016 13:47:08 -0600 Subject: [PATCH] In case the response body is an object, Stringify it so that I can read it --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index a1b7b73..92641a0 100644 --- a/index.js +++ b/index.js @@ -56,7 +56,7 @@ module.exports = exports = function(request, log) { debugId : this._debugId, headers : clone(res.headers), statusCode : res.statusCode, - body : res.body + body : JSON.stringify(res.body) }, this) }