From a6260228e97eeba62f99a9d88ade2220e4802240 Mon Sep 17 00:00:00 2001 From: Florian Uhlig <florian.uhlig@googlemail.com> Date: Wed, 28 Aug 2024 11:32:16 +0000 Subject: [PATCH] Remove a debug output statement --- algo/ca/core/tracking/CaTripletConstructor.cxx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/algo/ca/core/tracking/CaTripletConstructor.cxx b/algo/ca/core/tracking/CaTripletConstructor.cxx index 6d64be5724..8fdc40b109 100644 --- a/algo/ca/core/tracking/CaTripletConstructor.cxx +++ b/algo/ca/core/tracking/CaTripletConstructor.cxx @@ -392,8 +392,10 @@ void TripletConstructor::FindRightHit() CollectHits(T2, fIstaR, tripletChi2Cut, iMC, collectedHits, fParameters.GetMaxTripletPerDoublets()); if (collectedHits.size() >= fParameters.GetMaxTripletPerDoublets()) { - LOG(debug) << "Ca: GetMaxTripletPerDoublets==" << fParameters.GetMaxTripletPerDoublets() - << " reached in findTripletsStep0()"; + // FU, 28.08.2024, Comment the following log lines since it spams the output + // of our tests and finally results in crashes on run4 + // LOG(debug) << "Ca: GetMaxTripletPerDoublets==" << fParameters.GetMaxTripletPerDoublets() + // << " reached in findTripletsStep0()"; // reject already created triplets for this doublet collectedHits.clear(); } -- GitLab