Skip to content
Snippets Groups Projects
Commit ff96893e authored by Felix Weiglhofer's avatar Felix Weiglhofer Committed by Pierre-Alain Loizeau
Browse files

online: Print equipment id in hex.

parent 86f8b7c1
No related branches found
No related tags found
1 merge request!1799online: Print equipment id in hex.
Pipeline #29208 passed
......@@ -110,11 +110,13 @@ namespace cbm::algo
if (algo == fAlgos.end()) {
if (!Contains(legalEqIds, msDesc.eq_id)) {
L_(error) << "Invalid equip id " << int{msDesc.eq_id} << " for subsystem " << ToString(subsystem);
L_(error) << "Invalid equip id " << std::hex << int{msDesc.eq_id} << std::dec << " for subsystem "
<< ToString(subsystem);
monitorOut.errInvalidEqId++;
}
else {
L_(error) << "Invalid system version " << int{msDesc.sys_ver} << " for subsystem " << ToString(subsystem);
L_(error) << "Invalid system version " << std::hex << int{msDesc.sys_ver} << std::dec << " for subsystem "
<< ToString(subsystem);
monitorOut.errInvalidSysVer++;
}
continue;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment