Skip to content

Commit 4b31a5e

Browse files
authored
PWGHF: replace LOG(info) with LOG(debug) to avoid large outputs (AliceO2Group#7933)
1 parent c54cb4d commit 4b31a5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PWGHF/TableProducer/candidateCreatorCascade.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,10 +264,10 @@ struct HfCandidateCreatorCascade {
264264
if (df.process(trackV0, trackBach) == 0) {
265265
continue;
266266
} else {
267-
// LOG(info) << "Vertexing succeeded for Lc candidate";
267+
LOG(debug) << "Vertexing succeeded for Lc candidate";
268268
}
269269
} catch (const std::runtime_error& error) {
270-
LOG(info) << "Run time error found: " << error.what() << ". DCAFitterN cannot work, skipping the candidate.";
270+
LOG(debug) << "Run time error found: " << error.what() << ". DCAFitterN cannot work, skipping the candidate.";
271271
hCandidates->Fill(SVFitting::Fail);
272272
continue;
273273
}

0 commit comments

Comments
 (0)