From 8f65026cdf73de435e145f0e5441a3a4f89895dd Mon Sep 17 00:00:00 2001 From: Waqar Ahmed Khan Date: Fri, 10 Jan 2025 11:13:04 -0800 Subject: [PATCH] log --- source/s3_copy_object.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/s3_copy_object.c b/source/s3_copy_object.c index 300aa79d..9176e04f 100644 --- a/source/s3_copy_object.c +++ b/source/s3_copy_object.c @@ -93,7 +93,10 @@ struct aws_s3_meta_request *aws_s3_meta_request_copy_object_new( copy_object->threaded_update_data.next_part_number = 1; if (options->copy_source_uri.len != 0) { if (aws_uri_init_parse(©_object->source_uri, allocator, &options->copy_source_uri)) { - // TODO: log + AWS_LOGF_ERROR( + AWS_LS_S3_META_REQUEST, + "Unable to parse the copy_source_uri provided in the request: " PRInSTR "", + AWS_BYTE_CURSOR_PRI(options->copy_source_uri)); goto on_error; } }