Skip to content

Commit f14f144

Browse files
authored
TPC: demote errors about IDC CRU orbit/packets mismatches from critical to error (#14365)
1 parent 5bf1302 commit f14f144

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Detectors/TPC/workflow/src/IDCToVectorSpec.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ class IDCToVectorDevice : public o2::framework::Task
405405

406406
for (const auto& inf : infVec) {
407407
if (!inf.hasBothEPs()) {
408-
LOGP(critical, "IDC CRU {:3}: data missing at ({:8}, {:4}) for one or both end points {:02b} in TF {}", cru, inf.heartbeatOrbit, inf.heartbeatBC, inf.epSeen, tfCounter);
408+
LOGP(error, "IDC CRU {:3}: data missing at ({:8}, {:4}) for one or both end points {:02b} in TF {}", cru, inf.heartbeatOrbit, inf.heartbeatBC, inf.epSeen, tfCounter);
409409
hasErrors = true;
410410
}
411411
}
@@ -417,12 +417,12 @@ class IDCToVectorDevice : public o2::framework::Task
417417
}
418418

419419
if (packetsInTF != infVec.size()) {
420-
LOGP(critical, "IDC CRU {:3}: number of IDC packets {} does not match max over all CRUs {} in TF {}", cru, packetsInTF, infVec.size(), tfCounter);
420+
LOGP(error, "IDC CRU {:3}: number of IDC packets {} does not match max over all CRUs {} in TF {}", cru, packetsInTF, infVec.size(), tfCounter);
421421
hasErrors = true;
422422
}
423423

424424
if (!std::equal(infVecComp->begin(), infVecComp->end(), infVec.begin())) {
425-
LOGP(critical, "IDC CRU {:3}: mismatch in orbit numbers", cru);
425+
LOGP(error, "IDC CRU {:3}: mismatch in orbit numbers", cru);
426426
hasErrors = true;
427427
}
428428
}

0 commit comments

Comments
 (0)