File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -37,16 +37,16 @@ public function log(LoggerInterface $logger)
3737 'body ' => [
3838 'content ' => $ this ->requestBody
3939 ],
40- 'cookies ' => $ this ->requestCookies ,
41- 'headers ' => $ this ->requestHeaders ,
40+ 'cookies.raw ' => json_encode ( $ this ->requestCookies , JSON_PRETTY_PRINT ) ,
41+ 'headers.raw ' => json_encode ( $ this ->requestHeaders , JSON_PRETTY_PRINT ) ,
4242 'method ' => $ this ->method
4343 ],
4444 'response ' => [
4545 'body ' => [
4646 'content ' => $ this ->responseBody
4747 ],
48- 'cookies ' => $ this ->responseCookies ,
49- 'headers ' => $ this ->responseHeaders ,
48+ 'cookies.raw ' => json_encode ( $ this ->responseCookies , JSON_PRETTY_PRINT ) ,
49+ 'headers.raw ' => json_encode ( $ this ->responseHeaders , JSON_PRETTY_PRINT ) ,
5050 'status_code ' => $ this ->status
5151 ]
5252 ],
You can’t perform that action at this time.
0 commit comments