File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -210,14 +210,18 @@ Thread::CallbackResult ReadoutEquipmentRORC::prepareBlocks()
210210 }
211211 }
212212 lastPacketDropped = currentPacketDropped;
213- if (!channel->areSuperpageFifosHealthy ()) {
214- static InfoLogger::AutoMuteToken logToken (LogWarningSupport_ (3235 ), 5 , 60 );
215- theLog.log (logToken, " Equipment %s: CRU memory fifo not healthy" , name.c_str ());
216- }
213+
217214 if (isWaitingFirstLoop) {
218215 packetDroppedTimer.reset (1000000 ); // 1 sec interval
219216 } else {
220217 packetDroppedTimer.increment ();
218+ // check CRU FIFO status - but only after first loop, otherwise would be empty yet
219+ if (0 ) { // feature disabled for the time being, spurious warnings on startup
220+ if (!channel->areSuperpageFifosHealthy ()) {
221+ static InfoLogger::AutoMuteToken logToken (LogWarningSupport_ (3235 ), 5 , 60 );
222+ theLog.log (logToken, " Equipment %s: ROC memory fifo not healthy" , name.c_str ());
223+ }
224+ }
221225 }
222226 }
223227
You can’t perform that action at this time.
0 commit comments