From b5e2bfc86021d9c43253ed299a2a6efe8be151fe Mon Sep 17 00:00:00 2001 From: Erik Frojdh Date: Fri, 11 Sep 2026 11:15:12 +0200 Subject: [PATCH] print connection --- slsReceiverSoftware/src/ClientInterface.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/slsReceiverSoftware/src/ClientInterface.cpp b/slsReceiverSoftware/src/ClientInterface.cpp index 4332970a5..99de0ffd2 100644 --- a/slsReceiverSoftware/src/ClientInterface.cpp +++ b/slsReceiverSoftware/src/ClientInterface.cpp @@ -236,8 +236,9 @@ int ClientInterface::decodeFunction(Interface &socket) { if (fnum <= NUM_DET_FUNCTIONS || fnum >= NUM_REC_FUNCTIONS) { throw RuntimeError(UNRECOGNIZED_FNUM_ENUM + std::to_string(fnum)); } else { - LOG(logDEBUG1) << "calling function fnum: " << fnum << " (" - << getFunctionNameFromEnum((enum detFuncs)fnum) << ")"; + LOG(logINFO) << "Client " << server.getThisClient() + << " calling function fnum: " << fnum << " (" + << getFunctionNameFromEnum((enum detFuncs)fnum) << ")"; ret = (this->*flist[fnum])(socket); LOG(logDEBUG1) << "Function " << getFunctionNameFromEnum((enum detFuncs)fnum)