fix ctx.inspect() after previous commit
otherwise .body will be missing
This commit is contained in:
parent
14fe56e632
commit
7c3181e4d7
1 changed files with 4 additions and 1 deletions
|
@ -20,7 +20,10 @@ module.exports = {
|
||||||
*/
|
*/
|
||||||
|
|
||||||
inspect: function(){
|
inspect: function(){
|
||||||
return this.toJSON();
|
return {
|
||||||
|
request: this.request,
|
||||||
|
response: this.response
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue