chore: reorder logs in the memory sharing tests

Reorder the logs in memory sharing tests for clarity.

Signed-off-by: J-Alves <joao.alves@arm.com>
Change-Id: I718024dea191346eacc4ebc0a64e0396b001d63f
diff --git a/tftf/tests/runtime_services/secure_service/test_ffa_memory_sharing.c b/tftf/tests/runtime_services/secure_service/test_ffa_memory_sharing.c
index 9309eba..ea33587 100644
--- a/tftf/tests/runtime_services/secure_service/test_ffa_memory_sharing.c
+++ b/tftf/tests/runtime_services/secure_service/test_ffa_memory_sharing.c
@@ -81,6 +81,8 @@
 	const uint32_t constituents_count = sizeof(constituents) /
 			sizeof(struct ffa_memory_region_constituent);
 
+	VERBOSE("TFTF - Address: %p\n", constituents[0].address);
+
 	handle = memory_init_and_send((struct ffa_memory_region *)mb.send,
 					MAILBOX_SIZE, SENDER, RECEIVER,
 					constituents, constituents_count,
@@ -90,8 +92,7 @@
 		return TEST_RESULT_FAIL;
 	}
 
-	VERBOSE("TFTF - Handle: %llx\nTFTF - Address: %p\n",
-					handle, constituents[0].address);
+	VERBOSE("TFTF - Handle: %llx\n", handle);
 
 	ptr = (uint32_t *)constituents[0].address;