fix: spm tests less verbose

Signed-off-by: Olivier Deprez <olivier.deprez@arm.com>
Change-Id: I3359b2e6e73dd0ceb923c953a6b18badd871294b
diff --git a/spm/cactus/cactus_interrupt.c b/spm/cactus/cactus_interrupt.c
index 2305b01..02d1fbf 100644
--- a/spm/cactus/cactus_interrupt.c
+++ b/spm/cactus/cactus_interrupt.c
@@ -46,7 +46,7 @@
 		 * Interrupt triggered due to Trusted watchdog timer expiry.
 		 * Clear the interrupt and stop the timer.
 		 */
-		NOTICE("Trusted WatchDog timer stopped\n");
+		VERBOSE("Trusted WatchDog timer stopped\n");
 		sp805_twdog_stop();
 
 		/* Perform secure interrupt de-activation. */
diff --git a/tftf/tests/runtime_services/secure_service/test_ffa_setup_and_discovery.c b/tftf/tests/runtime_services/secure_service/test_ffa_setup_and_discovery.c
index 3a16ee0..1373adf 100644
--- a/tftf/tests/runtime_services/secure_service/test_ffa_setup_and_discovery.c
+++ b/tftf/tests/runtime_services/secure_service/test_ffa_setup_and_discovery.c
@@ -240,7 +240,7 @@
  */
 test_result_t test_ffa_rxtx_map_fail(void)
 {
-	INFO("This test expects error log.\n");
+	VERBOSE("This test expects error log.\n");
 	return test_ffa_rxtx_map(FFA_ERROR);
 }
 
@@ -282,7 +282,7 @@
  */
 test_result_t test_ffa_rxtx_unmap_fail(void)
 {
-	INFO("This test expects error log.\n");
+	VERBOSE("This test expects error log.\n");
 	return test_ffa_rxtx_unmap(FFA_ERROR);
 }
 
@@ -296,7 +296,7 @@
 	test_result_t ret =  test_ffa_rxtx_map(FFA_SUCCESS_SMC32);
 
 	if (ret == TEST_RESULT_SUCCESS) {
-		INFO("Set RXTX Mailbox for remaining spm tests.\n");
+		VERBOSE("Set RXTX Mailbox for remaining spm tests.\n");
 		set_tftf_mailbox(&mb);
 	}
 	return ret;