timing problem does not fully disappear..
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good
This commit is contained in:
@ -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);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user