From af1baf0e69d94df8150f84a8e86acbd926274c7d Mon Sep 17 00:00:00 2001 From: Giovanna Lehmann Miotto Date: Wed, 31 Jul 2024 16:45:27 +0200 Subject: [PATCH] reduce verbosity --- src/TAMakerPrescaleAlgorithm.cpp | 2 +- src/TCMakerPrescaleAlgorithm.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/TAMakerPrescaleAlgorithm.cpp b/src/TAMakerPrescaleAlgorithm.cpp index 0086e66..87c526c 100644 --- a/src/TAMakerPrescaleAlgorithm.cpp +++ b/src/TAMakerPrescaleAlgorithm.cpp @@ -21,7 +21,7 @@ TAMakerPrescaleAlgorithm::operator()(const TriggerPrimitive& input_tp, std::vect if ((m_primitive_count++) % m_prescale == 0) { - TLOG(TLVL_DEBUG_1) << "Emitting prescaled TriggerActivity " << (m_primitive_count-1); + TLOG_DEBUG(TLVL_DEBUG_10) << "Emitting prescaled TriggerActivity " << (m_primitive_count-1); std::vector tp_list; tp_list.push_back(input_tp); diff --git a/src/TCMakerPrescaleAlgorithm.cpp b/src/TCMakerPrescaleAlgorithm.cpp index 5e17055..7921691 100644 --- a/src/TCMakerPrescaleAlgorithm.cpp +++ b/src/TCMakerPrescaleAlgorithm.cpp @@ -20,7 +20,7 @@ TCMakerPrescaleAlgorithm::operator()(const TriggerActivity& activity, std::vecto { if ((m_activity_count++) % m_prescale == 0) { - TLOG(TLVL_DEBUG_1) << "Emitting prescaled TriggerCandidate " << (m_activity_count-1); + TLOG_DEBUG(TLVL_DEBUG_10) << "Emitting prescaled TriggerCandidate " << (m_activity_count-1); std::vector ta_list; ta_list.push_back(static_cast(activity));