LIB: Update secure partitions with new logging API

Change-Id: Ic4651000ac3c22f54f329d0e0aebb41ffb839b34
Signed-off-by: Jackson Cooper-Driver <jackson.cooper-driver@arm.com>
diff --git a/partitions/scmi/scmi_comms.c b/partitions/scmi/scmi_comms.c
index 796482c..a3075df 100644
--- a/partitions/scmi/scmi_comms.c
+++ b/partitions/scmi/scmi_comms.c
@@ -9,7 +9,7 @@
 #include "scmi_comms.h"
 #include "scmi_hal.h"
 #include "scmi_protocol.h"
-#include "tfm_sp_log.h"
+#include "tfm_log_unpriv.h"
 
 #include <assert.h>
 #include <stddef.h>
@@ -375,9 +375,9 @@
      */
     err = scmi_comms_notification_subscribe(&agent_buf);
     if (err == SCMI_COMMS_SUCCESS) {
-        LOG_INFFMT("SCMI Comms subscribed to power state notifications\r\n");
+        INFO_UNPRIV_RAW("SCMI Comms subscribed to power state notifications\n");
     } else {
-        LOG_ERRFMT("SCMI Comms failed to subscribe to power state notifications\r\n");
+        ERROR_UNPRIV_RAW("SCMI Comms failed to subscribe to power state notifications\n");
     }
 
     while (1) {