Skip to content
Snippets Groups Projects
Commit f7e10ddb authored by gerbaudo's avatar gerbaudo
Browse files

Change TRG_MSG_ALWAYS -> TRG_MSG_INFO, fixes ATR-16951

Details:
this was a bug introduced in !3099
parent 05e92b3e
No related branches found
No related tags found
No related merge requests found
...@@ -321,9 +321,8 @@ TopoSteering::executeSortingAlgorithm(TCS::SortingAlg *alg, ...@@ -321,9 +321,8 @@ TopoSteering::executeSortingAlgorithm(TCS::SortingAlg *alg,
TCS::InputConnector* inputConnector, TCS::InputConnector* inputConnector,
TCS::TOBArray * & sortedOutput) { TCS::TOBArray * & sortedOutput) {
//TRG_MSG_DEBUG TRG_MSG_DEBUG(" ... executing sorting alg '" << alg->fullname() << "'"
TRG_MSG_ALWAYS(" ... executing sorting alg '" << alg->fullname() << "'" <<(m_useBitwise?" (bitwise)":""));
<<(m_useBitwise?" (bitwise)":""));
const InputTOBArray * input = inputConnector->outputData(); const InputTOBArray * input = inputConnector->outputData();
...@@ -341,9 +340,8 @@ TopoSteering::executeDecisionAlgorithm(TCS::DecisionAlg *alg, ...@@ -341,9 +340,8 @@ TopoSteering::executeDecisionAlgorithm(TCS::DecisionAlg *alg,
const std::vector<TCS::TOBArray *> & output, const std::vector<TCS::TOBArray *> & output,
TCS::Decision & decision) { TCS::Decision & decision) {
// TRG_MSG_INFO(" ... executing decision alg '" << alg->fullname() << "'"); TRG_MSG_INFO(" ... executing decision alg '" << alg->fullname() << "'"
TRG_MSG_ALWAYS(" ... executing decision alg '" << alg->fullname() << "'" <<(m_useBitwise?" (bitwise)":""));
<<(m_useBitwise?" (bitwise)":""));
if(inputConnectors.size()<1) { if(inputConnectors.size()<1) {
TCS_EXCEPTION("L1Topo Steering: Decision algorithm expects at least 1 input array but got 0"); TCS_EXCEPTION("L1Topo Steering: Decision algorithm expects at least 1 input array but got 0");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment