Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Detectors/TPC/workflow/src/IDCToVectorSpec.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ class IDCToVectorDevice : public o2::framework::Task

for (const auto& inf : infVec) {
if (!inf.hasBothEPs()) {
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);
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);
hasErrors = true;
}
}
Expand All @@ -422,7 +422,7 @@ class IDCToVectorDevice : public o2::framework::Task
}

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