printout corrections
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good

This commit is contained in:
Robin Müller 2023-02-13 10:03:16 +01:00
parent 7e3de3ca95
commit 2c0efdee5a
No known key found for this signature in database
GPG Key ID: 71B58F8A3CDFA9AC

View File

@ -579,9 +579,9 @@ void AcsController::announceMode(bool recursive) {
} 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;
const char *submodeStr = acs::getModeStr(static_cast<acs::AcsMode>(submode));
sif::info << "ACS controller is now in " << modeStr << " mode with " << submodeStr << " submode"
<< std::endl;
return ExtendedControllerBase::announceMode(recursive);
}