Commit 9b7bc795769c2c8d6a3c4b9bb0295650b19f731e
1 parent
d207abef
Exists in
amdadev
and in
1 other branch
Remove some debug logs
Showing
2 changed files
with
0 additions
and
8 deletions
Show diff stats
src/ExternLib/StatisticFunctions/ProcessStatisticFunctions.cc
... | ... | @@ -56,25 +56,19 @@ TimeStamp ProcessStatisticFunctions::init() { |
56 | 56 | TimeIntervalListSPtr lTimeIntervalList(new TimeIntervalList()); |
57 | 57 | |
58 | 58 | // Add shift time for each time interval |
59 | - std::cout << "BRE - A" << std::endl; | |
60 | 59 | for (TimeIntervalList::iterator it = _timeIntervalList->begin(); it != _timeIntervalList->end(); ++it) { |
61 | 60 | if ((*it)._startTime - _windowtime/2. > 0) { |
62 | - std::cout << "BRE - B" << std::endl; | |
63 | 61 | lTimeIntervalList->push_back(TimeInterval( (*it)._startTime - _windowtime/2., (*it)._stopTime + _windowtime/2.)); |
64 | 62 | } |
65 | 63 | else { |
66 | - std::cout << "BRE - C" << std::endl; | |
67 | 64 | lTimeIntervalList->push_back(TimeInterval( 0, (*it)._stopTime + _windowtime/2.)); |
68 | 65 | } |
69 | 66 | } |
70 | 67 | |
71 | - std::cout << "BRE - D" << std::endl; | |
72 | 68 | TimeStamp time = _parameterInput->init( this, lTimeIntervalList); |
73 | 69 | |
74 | - std::cout << "BRE - E" << std::endl; | |
75 | 70 | _paramInput = _parameterInput->getParamData(this).get(); |
76 | 71 | |
77 | - std::cout << "BRE - F" << std::endl; | |
78 | 72 | StatisticFunctionsCreator lCreator(*this, _timeIntervalList, *_paramInput, _type, _windowtime); |
79 | 73 | _operation = lCreator.getOperation(); |
80 | 74 | _paramData = ParamDataSPtr(_operation->getParamOutput()); |
... | ... | @@ -85,7 +79,6 @@ TimeStamp ProcessStatisticFunctions::init() { |
85 | 79 | gapThreshold = 1; |
86 | 80 | } |
87 | 81 | _parameter.setGapThreshold(gapThreshold); |
88 | - std::cout << "BRE - G" << std::endl; | |
89 | 82 | return time; |
90 | 83 | } |
91 | 84 | ... | ... |
src/Parameters/ServicesServer.hh
... | ... | @@ -201,7 +201,6 @@ namespace AMDA { |
201 | 201 | |
202 | 202 | bool getInjectResamplingBeforeProcess(std::string processId) { |
203 | 203 | auto lIt = _injectResamplingBeforeProcess.find(processId); |
204 | - std::cout << "BRE - getInjectResamplingBeforeProcess - " << processId << " - " << ((lIt == _injectResamplingBeforeProcess.end()) ? true : lIt->second) << std::endl; | |
205 | 204 | return (lIt == _injectResamplingBeforeProcess.end()) ? true : lIt->second; |
206 | 205 | } |
207 | 206 | ... | ... |