diff --git a/example/controller/FsfwTestController.cpp b/example/controller/FsfwTestController.cpp index 5c5ea82..5b45875 100644 --- a/example/controller/FsfwTestController.cpp +++ b/example/controller/FsfwTestController.cpp @@ -108,7 +108,7 @@ void FsfwTestController::handleChangedDataset(sid_t sid, store_address_t storeId } else { printout = "Snapshot"; } - FSFW_LOGI("handleChangedDataset: {} update from object ID {:#08x} and set ID {}\n", printout, + FSFW_LOGI("handleChangedDataset: {} update from object ID {:#010x} and set ID {}\n", printout, sid.objectId, sid.ownerSetId); if (storeId == storeId::INVALID_STORE_ADDRESS) { diff --git a/example/test/testFmt.cpp b/example/test/testFmt.cpp index fddbe0f..8ad37ec 100644 --- a/example/test/testFmt.cpp +++ b/example/test/testFmt.cpp @@ -2,8 +2,8 @@ void fmtTests() { sif::initialize(); - sif::debug(__FILENAME__, __LINE__, "Hello {}", "World\n"); - sif::debug_t(__FILENAME__, __LINE__, "Hallo\n"); + sif::debug_s(__FILENAME__, __LINE__, "Hello {}", "World\n"); + sif::debug_st(__FILENAME__, __LINE__, "Hallo\n"); FSFW_LOGD("{}", "Hallo\n"); sif::info_t("Hallo\n"); sif::info("Hallo\n"); diff --git a/example/utility/TaskCreation.h b/example/utility/TaskCreation.h index 8872c88..4541f14 100644 --- a/example/utility/TaskCreation.h +++ b/example/utility/TaskCreation.h @@ -7,7 +7,7 @@ namespace task { void printInitError(const char* objName, object_id_t objectId) { - FSFW_LOGW("InitMission: Adding object {} ({:#08x}) failed\n", objName, objectId); + FSFW_LOGW("InitMission: Adding object {} ({:#010x}) failed\n", objName, objectId); } } // namespace task