removed logging

This commit is contained in:
Erik Frojdh
2020-05-12 11:49:49 +02:00
parent ed8d606eb2
commit 46afcfe694

View File

@ -1700,7 +1700,7 @@ void Module::updateReceiverStreamingIP() {
} }
bool Module::getTenGigaFlowControl() { bool Module::getTenGigaFlowControl() {
return sendToDetector<int>(F_GET_TEN_GIGA_FLOW_CONTROL)!=0; return sendToDetector<int>(F_GET_TEN_GIGA_FLOW_CONTROL);
} }
void Module::setTenGigaFlowControl(bool enable) { void Module::setTenGigaFlowControl(bool enable) {
@ -2036,7 +2036,6 @@ bool Module::getCurrentSource() {
} }
void Module::setCurrentSource(bool value) { void Module::setCurrentSource(bool value) {
LOG(logDEBUG1) << "Setting current source enable to " << value;
sendToDetector(F_SET_CURRENT_SOURCE, static_cast<int>(value), nullptr); sendToDetector(F_SET_CURRENT_SOURCE, static_cast<int>(value), nullptr);
} }
@ -2046,7 +2045,6 @@ slsDetectorDefs::timingSourceType Module::getTimingSource() {
} }
void Module::setTimingSource(slsDetectorDefs::timingSourceType value) { void Module::setTimingSource(slsDetectorDefs::timingSourceType value) {
LOG(logDEBUG1) << "Setting timing source to " << value;
sendToDetector(F_SET_TIMING_SOURCE, static_cast<int>(value), nullptr); sendToDetector(F_SET_TIMING_SOURCE, static_cast<int>(value), nullptr);
} }