print event listeners
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good

This commit is contained in:
2022-02-18 13:40:20 +01:00
parent bbb07dd459
commit a6f3b6fc83
4 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,4 @@
#include <fsfw/events/EventManager.h>
#include "CoreController.h"
#include "OBSWConfig.h"
@ -99,6 +100,10 @@ ReturnValue_t CoreController::initializeAfterTaskCreation() {
setenv("PATH", updatedEnvPath.c_str(), true);
updateProtInfo();
initPrint();
auto eventManager = ObjectManager::instance()->get<EventManager>(objects::EVENT_MANAGER);
if(eventManager != nullptr) {
eventManager->printListeners();
}
return result;
}