Skip to content

Commit

Permalink
[Fix] request body logged content
Browse files Browse the repository at this point in the history
There were two headers section logged instead of one request body
section logged in the report.
  • Loading branch information
jstourac committed Mar 25, 2024
1 parent 3e35a71 commit abfb8a5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Perform Request
Remove OAuth Token From Header headers=${response.headers} token=${request_args}[headers][Cookie]
Set Log Level INFO
Set To Dictionary ${LOG_DICT} url=${response.request.url} headers=${response.request.headers}
... body=${response.request.headers} status_code=${response.status_code}
... body=${response.request.body} status_code=${response.status_code}
Log ${request_type} Request: ${LOG_DICT}
Set To Dictionary ${LOG_RESP_DICT} url=${response.url} headers=${response.headers} body=${response.text}
... status_code=${response.status_code} reason=${response.reason}
Expand Down

0 comments on commit abfb8a5

Please sign in to comment.