Skip to content

Commit 879a84c

Browse files
shahor02davidrohr
authored andcommitted
Decrease max error count, err->warn for *Wrong order/duplication*
1 parent 3cba3e6 commit 879a84c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Detectors/ITSMFT/common/reconstruction/src/RawPixelDecoder.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -375,10 +375,10 @@ ChipPixelData* RawPixelDecoder<Mapping>::getNextChipData(std::vector<ChipPixelDa
375375
// assert(mLastReadChipID < chipData.getChipID());
376376
if (mLastReadChipID >= chipData.getChipID()) {
377377
if (!mROFRampUpStage) {
378-
const int MaxErrLog = 5;
378+
const int MaxErrLog = 2;
379379
static int errLocCount = 0;
380380
if (errLocCount < MaxErrLog) {
381-
LOGP(error, "Wrong order/duplication: encountered chip {} after processing chip {}, skippin. Inform PDP (message {} of max {} allowed)",
381+
LOGP(warn, "Wrong order/duplication: encountered chip {} after processing chip {}, skipping.",
382382
chipData.getChipID(), mLastReadChipID, ++errLocCount, MaxErrLog);
383383
}
384384
}

0 commit comments

Comments
 (0)