You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/releaseNotes.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -666,3 +666,6 @@ This file describes the main feature changes for each readout.exe released versi
666
666
- Added configuration parameters:
667
667
- readout.externalSyncServer and readout.externalSyncTimeout, to connect and wait at START for a sync signal sent by o2-readout-sync-server.
668
668
- Added o2-readout-sync-server utility, to generate a sync signal in order to start multiple readout replay instances synchronously. (implemented with ZMQ REQ/REP).
669
+
670
+
## v2.28.1 - 31/07/2025
671
+
- Promoted to OPS level the log messages causing a fatal error in "running" state. These are currently the RDH and HB orbit issues in the first timeframe.
theLog.log(LogErrorSupport_(3241), "Equipment %s : first HB orbit is different from other equipments", name.c_str());
697
+
theLog.log(LogErrorOps_(3241), "Equipment %s : first HB orbit is different from other equipments", name.c_str());
698
698
isFatalError++;
699
699
}
700
700
}
@@ -866,7 +866,7 @@ int ReadoutEquipment::processRdh(DataBlockContainerReference& block)
866
866
} else {
867
867
if ((cfgRdhCheckFirstOrbit) && (currentBlockId == 0)) {
868
868
// if 1st RDH received is wrong, it's the same as a wrong orbit
869
-
theLog.log(LogErrorSupport_(3241), "Equipment %s : first RDH is wrong", name.c_str());
869
+
theLog.log(LogErrorOps_(3241), "Equipment %s : first RDH is wrong", name.c_str());
870
870
isFatalError++;
871
871
}
872
872
}
@@ -898,7 +898,7 @@ int ReadoutEquipment::processRdh(DataBlockContainerReference& block)
898
898
if (!equipmentLinksData[linkId].firstOrbitIsDefined) {
899
899
if (orbitId != firstLinkOrbit) {
900
900
if (cfgRdhCheckFirstOrbit) {
901
-
theLog.log(LogErrorSupport_(3241), "Equipment %s : first HB orbit of link %d is different from first link(%d): 0x%X != 0x%X", name.c_str(), linkId, firstLinkId, orbitId, firstLinkOrbit);
901
+
theLog.log(LogErrorOps_(3241), "Equipment %s : first HB orbit of link %d is different from first link(%d): 0x%X != 0x%X", name.c_str(), linkId, firstLinkId, orbitId, firstLinkOrbit);
0 commit comments