From 46afcfe694efb6cd2088e81a4f3f780673b9698c Mon Sep 17 00:00:00 2001 From: Erik Frojdh Date: Tue, 12 May 2020 11:49:49 +0200 Subject: [PATCH] removed logging --- slsDetectorSoftware/src/Module.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/slsDetectorSoftware/src/Module.cpp b/slsDetectorSoftware/src/Module.cpp index 11b572928..472b25ee4 100644 --- a/slsDetectorSoftware/src/Module.cpp +++ b/slsDetectorSoftware/src/Module.cpp @@ -1700,7 +1700,7 @@ void Module::updateReceiverStreamingIP() { } bool Module::getTenGigaFlowControl() { - return sendToDetector(F_GET_TEN_GIGA_FLOW_CONTROL)!=0; + return sendToDetector(F_GET_TEN_GIGA_FLOW_CONTROL); } void Module::setTenGigaFlowControl(bool enable) { @@ -2036,7 +2036,6 @@ bool Module::getCurrentSource() { } void Module::setCurrentSource(bool value) { - LOG(logDEBUG1) << "Setting current source enable to " << value; sendToDetector(F_SET_CURRENT_SOURCE, static_cast(value), nullptr); } @@ -2046,7 +2045,6 @@ slsDetectorDefs::timingSourceType Module::getTimingSource() { } void Module::setTimingSource(slsDetectorDefs::timingSourceType value) { - LOG(logDEBUG1) << "Setting timing source to " << value; sendToDetector(F_SET_TIMING_SOURCE, static_cast(value), nullptr); }