Skip to content

Commit d89ef68

Browse files
committed
Promote ITS/MFT wrong orbit/ROF count messages to critical
1 parent b3c66e8 commit d89ef68

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ bool RUDecodeData::checkLinkInSync(int icab, const o2::InteractionRecord ir)
125125
link->statistics.errorCounts[GBTLinkDecodingStat::ErrOldROF]++;
126126
linkHBFToDump[(uint64_t(link->subSpec) << 32) + link->hbfEntry] = link->irHBF.orbit;
127127
if (link->needToPrintError(link->statistics.errorCounts[GBTLinkDecodingStat::ErrOldROF]) && !ROFRampUpStage) {
128-
LOGP(error, "{} (cable {}) has IR={} for current majority IR={} -> {}", link->describe(),
128+
LOGP(critical, "{} (cable {}) has IR={} for current majority IR={} -> {}", link->describe(),
129129
cableHWID[icab], link->ir.asString(), ir.asString(), link->statistics.ErrNames[GBTLinkDecodingStat::ErrOldROF]);
130130
}
131131
#endif

Detectors/ITSMFT/common/workflow/src/STFDecoderSpec.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ void STFDecoder<Mapping>::run(ProcessingContext& pc)
202202
if ((expectedTFSize != nTriggersProcessed) && mROFErrRepIntervalMS > 0 && mTFCounter > 1 && nTriggersProcessed > 0) {
203203
long currTS = std::chrono::time_point_cast<std::chrono::milliseconds>(std::chrono::system_clock::now()).time_since_epoch().count();
204204
if (currTS - lastErrReportTS > mROFErrRepIntervalMS) {
205-
LOGP(error, "Inconsistent number of ROF per TF. From parameters: {} from readout: {} (muting further reporting for {} ms)", expectedTFSize, nTriggersProcessed, mROFErrRepIntervalMS);
205+
LOGP(critical, "Inconsistent number of ROF per TF. From parameters: {} from readout: {} (muting further reporting for {} ms)", expectedTFSize, nTriggersProcessed, mROFErrRepIntervalMS);
206206
lastErrReportTS = currTS;
207207
}
208208
}

0 commit comments

Comments
 (0)