Skip to content

Commit 185057f

Browse files
DROP ME: Add debug print
1 parent 63471e0 commit 185057f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

source/h1_connection.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -458,6 +458,9 @@ struct aws_http_stream *s_make_request(
458458
stream->base.request_method = aws_http_str_to_method(method);
459459
struct aws_byte_cursor path;
460460
aws_http_message_get_request_path(options->request, &path);
461+
printf("Method: %.*s\n", (int)method.len, method.ptr);
462+
printf("Path: %.*s\n", (int)path.len, path.ptr);
463+
461464
AWS_LOGF_DEBUG(
462465
AWS_LS_HTTP_STREAM,
463466
"id=%p: Created client request on connection=%p: " PRInSTR " " PRInSTR " " PRInSTR,

0 commit comments

Comments
 (0)