cleaned up logs

This commit is contained in:
2026-05-29 15:20:53 +02:00
parent aa7edc3966
commit 6d27021d3e
7 changed files with 2 additions and 27 deletions
-3
View File
@@ -67,9 +67,7 @@ int ClientSocket::sendCommandThenRead(int fnum, const void *args,
int ret = slsDetectorDefs::FAIL;
Send(&fnum, sizeof(fnum));
setFnum(fnum);
LOG(logDEBUG1) << "Sent command fnum: " << fnum << " to " << socketType;
Send(args, args_size);
LOG(logDEBUG1) << "About to read reply";
readReply(ret, retval, retval_size);
return ret;
}
@@ -78,7 +76,6 @@ void ClientSocket::readReply(int &ret, void *retval, size_t retval_size) {
try {
Receive(&ret, sizeof(ret));
// Receive<int>()
if (ret == slsDetectorDefs::FAIL) {
std::string mess = readErrorMessage();
// Do we need to know hostname here?