print connection

This commit is contained in:
Erik Frojdh
2026-09-11 11:15:12 +02:00
parent c10bc5e530
commit b5e2bfc860
+3 -2
View File
@@ -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)