secure_storage: its: store: settings: improve debug logging

Align the debug logging with that of the ZMS-based implementation.

Signed-off-by: Tomi Fontanilles <tomi.fontanilles@nordicsemi.no>
This commit is contained in:
Tomi Fontanilles 2024-11-27 12:20:04 +02:00 committed by Fabio Baltieri
parent 9ef6788bd9
commit 23a6a78599

View file

@ -20,7 +20,7 @@ static int init_settings_subsys(void)
const int ret = settings_subsys_init(); const int ret = settings_subsys_init();
if (ret) { if (ret) {
LOG_DBG("Failed to initialize the settings subsystem. (%d)", ret); LOG_DBG("Failed. (%d)", ret);
} }
return ret; return ret;
} }
@ -107,9 +107,7 @@ psa_status_t secure_storage_its_store_remove(secure_storage_its_uid_t uid)
make_name(uid, name); make_name(uid, name);
ret = settings_delete(name); ret = settings_delete(name);
if (ret) {
LOG_DBG("Failed to delete %s. (%d)", name, ret); LOG_DBG("%s %s. (%d)", ret ? "Failed to delete" : "Deleted", name, ret);
return PSA_ERROR_STORAGE_FAILURE; return ret ? PSA_ERROR_STORAGE_FAILURE : PSA_SUCCESS;
}
return PSA_SUCCESS;
} }