Skip to content

Commit 8757471

Browse files
wiechulashahor02
authored andcommitted
Demote errors to warnings
1 parent 9c91409 commit 8757471

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Detectors/TPC/workflow/src/IDCToVectorSpec.cxx

Lines changed: 2 additions & 2 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(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);
408+
LOGP(warning, "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
}
@@ -422,7 +422,7 @@ class IDCToVectorDevice : public o2::framework::Task
422422
}
423423

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

0 commit comments

Comments
 (0)