From 8e980d1ace22fe923c6c4b4dfb2d48701e93219a Mon Sep 17 00:00:00 2001 From: Dhanya Thattil Date: Tue, 28 Sep 2021 16:10:41 +0200 Subject: [PATCH] minor --- slsDetectorSoftware/src/Module.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/slsDetectorSoftware/src/Module.cpp b/slsDetectorSoftware/src/Module.cpp index 4f4038803..0f9a8d486 100644 --- a/slsDetectorSoftware/src/Module.cpp +++ b/slsDetectorSoftware/src/Module.cpp @@ -1080,7 +1080,7 @@ std::string Module::printReceiverConfiguration() { os << "\nSource UDP IP:\t" << getSourceUDPIP() << "\nSource UDP MAC:\t" << getSourceUDPMAC() << "\nDestination UDP IP:\t" - << getDestinationUDPIP() << "\nReceiver UDP MAC:\t" + << getDestinationUDPIP() << "\nDestination UDP MAC:\t" << getDestinationUDPMAC(); if (shm()->detType == JUNGFRAU) { @@ -1510,7 +1510,7 @@ void Module::setRateCorrection(int64_t t) { } void Module::sendReceiverRateCorrections(const std::vector &t) { - LOG(logDEBUG) << "Sending to Module [rate corrections: " << ToString(t) + LOG(logDEBUG) << "Sending to receiver 0 [rate corrections: " << ToString(t) << ']'; auto receiver = ReceiverSocket(shm()->rxHostname, shm()->rxTCPPort); receiver.Send(F_SET_RECEIVER_RATE_CORRECT);