timing problem does not fully disappear..
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good

This commit is contained in:
2023-02-13 09:56:57 +01:00
parent 3759b5d34a
commit 7e3de3ca95
2 changed files with 13 additions and 4 deletions

View File

@ -571,8 +571,17 @@ void AcsController::modeChanged(Mode_t mode, Submode_t submode) {
}
void AcsController::announceMode(bool recursive) {
const char *modeStr = acs::getModeStr(static_cast<acs::AcsMode>(mode));
sif::info << "ACS controller is now in " << modeStr << " mode" << std::endl;
const char* modeStr = "UNKNOWN";
if(mode == HasModesIF::MODE_OFF) {
modeStr = "OFF";
} else if(mode == HasModesIF::MODE_ON) {
modeStr = "ON";
} else if(mode == DeviceHandlerIF::MODE_NORMAL) {
modeStr = "NORMAL";
}
const char *submodeStr = acs::getModeStr(static_cast<acs::AcsMode>(mode));
sif::info << "ACS controller is now in " << modeStr << " mode with " <<
submodeStr << " submode" << std::endl;
return ExtendedControllerBase::announceMode(recursive);
}