diff --git a/subsys/suit/orchestrator/src/suit_orchestrator_sdfw.c b/subsys/suit/orchestrator/src/suit_orchestrator_sdfw.c index aa384b1916d2..17d1cbf2f254 100644 --- a/subsys/suit/orchestrator/src/suit_orchestrator_sdfw.c +++ b/subsys/suit/orchestrator/src/suit_orchestrator_sdfw.c @@ -214,7 +214,7 @@ static int update_path(void) LOG_ERR("Failed to validate update candidate manifest: %d", err); return err; } - LOG_DBG("Manifest validated"); + LOG_INF("Manifest validated"); err = suit_process_sequence((uint8_t *)update_regions[0].mem, update_regions[0].size, SUIT_SEQ_CAND_VERIFICATION); @@ -237,7 +237,7 @@ static int update_path(void) return SUIT_PROCESSOR_ERR_TO_ZEPHYR_ERR(err); } - LOG_DBG("suit-install successful"); + LOG_INF("suit-install successful"); return err; } @@ -289,7 +289,7 @@ static int boot_envelope(const suit_manifest_class_id_t *class_id) return SUIT_PROCESSOR_ERR_TO_ZEPHYR_ERR(err); } - LOG_DBG("Processed suit-validate"); + LOG_INF("Processed suit-validate"); err = suit_process_sequence(installed_envelope_address, installed_envelope_size, SUIT_SEQ_LOAD); @@ -302,7 +302,7 @@ static int boot_envelope(const suit_manifest_class_id_t *class_id) return SUIT_PROCESSOR_ERR_TO_ZEPHYR_ERR(err); } } - LOG_DBG("Processed suit-load"); + LOG_INF("Processed suit-load"); err = suit_process_sequence(installed_envelope_address, installed_envelope_size, SUIT_SEQ_INVOKE); @@ -310,7 +310,7 @@ static int boot_envelope(const suit_manifest_class_id_t *class_id) LOG_ERR("Failed to execute suit-invoke: %d", err); return SUIT_PROCESSOR_ERR_TO_ZEPHYR_ERR(err); } - LOG_DBG("Processed suit-invoke"); + LOG_INF("Processed suit-invoke"); return 0; } diff --git a/subsys/suit/platform/src/suit_plat_components.c b/subsys/suit/platform/src/suit_plat_components.c index b872955f145a..ef347ffc0771 100644 --- a/subsys/suit/platform/src/suit_plat_components.c +++ b/subsys/suit/platform/src/suit_plat_components.c @@ -234,7 +234,7 @@ int suit_plat_override_image_size(suit_component_t handle, size_t size) return SUIT_ERR_UNSUPPORTED_COMPONENT_ID; } - LOG_INF("%s, component size: %u, input size %u", __func__, component_size, size); + LOG_DBG("%s, component size: %u, input size %u", __func__, component_size, size); if (size > component_size) { LOG_ERR("Input size exceeds component size"); diff --git a/subsys/suit/storage/src/suit_storage_nrf54h20.c b/subsys/suit/storage/src/suit_storage_nrf54h20.c index 89ed0bf4fa29..0f5ab9163c4e 100644 --- a/subsys/suit/storage/src/suit_storage_nrf54h20.c +++ b/subsys/suit/storage/src/suit_storage_nrf54h20.c @@ -914,7 +914,7 @@ suit_plat_err_t suit_storage_installed_envelope_get(const suit_manifest_class_id return err; } - LOG_INF("Valid envelope with given class ID and role 0x%x found", role); + LOG_DBG("Valid envelope with given class ID and role 0x%x found", role); return err; } diff --git a/subsys/suit/storage/src/suit_storage_test.c b/subsys/suit/storage/src/suit_storage_test.c index af04b1c9dbd7..678688a417cb 100644 --- a/subsys/suit/storage/src/suit_storage_test.c +++ b/subsys/suit/storage/src/suit_storage_test.c @@ -293,7 +293,7 @@ suit_plat_err_t suit_storage_installed_envelope_get(const suit_manifest_class_id return err; } - LOG_INF("Valid envelope with given class ID and role 0x%x found", role); + LOG_DBG("Valid envelope with given class ID and role 0x%x found", role); return err; }