Skip to content

Commit

Permalink
changed http logging to hexdump
Browse files Browse the repository at this point in the history
  • Loading branch information
mariotaku committed Jul 26, 2023
1 parent fbd2535 commit 05afc46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/libgamestream/src/http.c
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ int http_request(HTTP *http, char *url, HTTP_DATA *data) {
int http_code = 0;
curl_easy_getinfo(curl, CURLINFO_HTTP_CODE, &http_code);
commons_log_debug("GameStream", "Request %p response %d", data, http_code);
commons_log_verbose("GameStream", "Request %p body %s", data, data->memory);
commons_log_hexdump(COMMONS_LOG_LEVEL_VERBOSE, "GameStream", data->memory, data->size);

ret = GS_OK;
finish:
Expand Down

0 comments on commit 05afc46

Please sign in to comment.