fix ctx.inspect() after previous commit

otherwise .body will be missing
This commit is contained in:
TJ Holowaychuk 2013-12-29 11:20:51 -08:00
parent 14fe56e632
commit 7c3181e4d7
1 changed files with 4 additions and 1 deletions

View File

@ -20,7 +20,10 @@ module.exports = {
*/ */
inspect: function(){ inspect: function(){
return this.toJSON(); return {
request: this.request,
response: this.response
}
}, },
/** /**