Commit dfbae0f9afcb291366db39fe818141e868dbaf5c
1 parent
bf8edcaab8
Exists in
master
Fix dump-req-res
Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff
lib/hit/dump-req-res.js
... | ... | @@ -53,7 +53,7 @@ ${ |
53 | 53 | ) |
54 | 54 | } |
55 | 55 | |
56 | -${httpMethod === 'GET' ? '' : `FULL URL: ${endpointUrl}?${querystring.stringify(params)}`} | |
56 | +${httpMethod === 'GET' ? `FULL URL: ${endpointUrl}?${querystring.stringify(params)}` : `FORM DATA: ${new URLSearchParams(params).toString()}`} | |
57 | 57 | |
58 | 58 | RESPONSE-STATUS: ${responseStatus} |
59 | 59 | RESPONSE-BODY: |