Skip to content
Snippets Groups Projects
Commit f12d447e authored by Thomas Jürges's avatar Thomas Jürges
Browse files

SW-546: Change some log messages to debug logs

parent fd870648
No related branches found
No related tags found
No related merge requests found
......@@ -535,7 +535,7 @@ namespace LOFAR
*/
int64_t offset{frame.header.time};
offset -= currentSubBand.time0;
LOG_INFO_STR("TBB: offset = frame.header.time - currentSubBand.time0, "
LOG_DEBUG_STR("TBB: offset = frame.header.time - currentSubBand.time0, "
<< offset << ", "
<< frame.header.time << ", "
<< currentSubBand.time0);
......@@ -545,7 +545,7 @@ namespace LOFAR
* a complex number of two 16 bit integers). sampleFreq is in MHz.
*/
offset *= (frame.header.sampleFreq * 1000000);
LOG_INFO_STR("TBB: offset *= (frame.header.sampleFreq * 1000000), "
LOG_DEBUG_STR("TBB: offset *= (frame.header.sampleFreq * 1000000), "
<< offset << ", "
<< static_cast< uint32_t >(frame.header.sampleFreq));
......@@ -566,7 +566,7 @@ namespace LOFAR
* frequency window.
*/
offset /= SPECTRAL_TRANSFORM_SIZE;
LOG_INFO_STR("TBB: offset /= SPECTRAL_TRANSFORM_SIZE, "
LOG_DEBUG_STR("TBB: offset /= SPECTRAL_TRANSFORM_SIZE, "
<< offset
<< ", "
<< SPECTRAL_TRANSFORM_SIZE);
......@@ -581,7 +581,7 @@ namespace LOFAR
*/
offset += sliceNr;
offset -= currentSubBand.slice0;
LOG_INFO_STR("TBB: offset += sliceNr - currentSubBand.slice0, "
LOG_DEBUG_STR("TBB: offset += sliceNr - currentSubBand.slice0, "
<< offset << ", "
<< sliceNr << ", "
<< currentSubBand.slice0);
......@@ -621,7 +621,7 @@ namespace LOFAR
if((currentSubBand.time0 % 2 == 0) && (frame.header.time % 2 == 1))
{
offset += 1;
LOG_INFO_STR("TBB: Added one sample to the offset because t0 is "
LOG_DEBUG_STR("TBB: Added one sample to the offset because t0 is "
"even and t_now is odd: currentSubBand.time0 = "
<< currentSubBand.time0
<< ", frame.header.time = "
......
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