From f7e10ddb3580bb762e298957c3c96ea2a1986221 Mon Sep 17 00:00:00 2001
From: gerbaudo <davide.gerbaudo@gmail.com>
Date: Tue, 5 Sep 2017 15:29:50 +0200
Subject: [PATCH] Change TRG_MSG_ALWAYS -> TRG_MSG_INFO, fixes ATR-16951

Details:
this was a bug introduced in !3099
---
 .../TrigT1/L1Topo/L1TopoCoreSim/Root/TopoSteering.cxx  | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/Trigger/TrigT1/L1Topo/L1TopoCoreSim/Root/TopoSteering.cxx b/Trigger/TrigT1/L1Topo/L1TopoCoreSim/Root/TopoSteering.cxx
index 58f6de62f075..0a4ffba50161 100644
--- a/Trigger/TrigT1/L1Topo/L1TopoCoreSim/Root/TopoSteering.cxx
+++ b/Trigger/TrigT1/L1Topo/L1TopoCoreSim/Root/TopoSteering.cxx
@@ -321,9 +321,8 @@ TopoSteering::executeSortingAlgorithm(TCS::SortingAlg *alg,
                                       TCS::InputConnector* inputConnector,
                                       TCS::TOBArray * & sortedOutput) {
                                            
-    //TRG_MSG_DEBUG
-    TRG_MSG_ALWAYS("  ... executing sorting alg '" << alg->fullname() << "'"
-                   <<(m_useBitwise?" (bitwise)":""));
+    TRG_MSG_DEBUG("  ... executing sorting alg '" << alg->fullname() << "'"
+                  <<(m_useBitwise?" (bitwise)":""));
 
    const InputTOBArray * input = inputConnector->outputData();
 
@@ -341,9 +340,8 @@ TopoSteering::executeDecisionAlgorithm(TCS::DecisionAlg *alg,
                                        const std::vector<TCS::TOBArray *> & output,
                                        TCS::Decision & decision) {
 
-   // TRG_MSG_INFO("  ... executing decision alg '" << alg->fullname() << "'");
-   TRG_MSG_ALWAYS("  ... executing decision alg '" << alg->fullname() << "'"
-                  <<(m_useBitwise?" (bitwise)":""));
+    TRG_MSG_INFO("  ... executing decision alg '" << alg->fullname() << "'"
+                 <<(m_useBitwise?" (bitwise)":""));
 
    if(inputConnectors.size()<1) {
       TCS_EXCEPTION("L1Topo Steering: Decision algorithm expects at least 1 input array but got 0");
-- 
GitLab