This commit is contained in:
2026-02-23 10:59:38 +01:00
parent 36b4646f38
commit 7505b82570
10 changed files with 41 additions and 91 deletions
-5
View File
@@ -91,9 +91,7 @@ std::string Module::getControlServerLongVersion() const {
}
throw;
LOG(logINFORED) << "Well it should have thrown by now";
}
LOG(logINFORED) << "After catch, should not be here";
}
void Module::throwDeprecatedServerVersion() const {
@@ -3118,7 +3116,6 @@ void Module::sendToDetector(int fnum, const void *args, size_t args_size,
template <typename Arg, typename Ret>
void Module::sendToDetector(int fnum, const Arg &args, Ret &retval) const {
std::cout << "in line 3075\n";
LOG(logDEBUG1) << "Sending: ["
<< getFunctionNameFromEnum(static_cast<detFuncs>(fnum))
<< ", nullptr, 0, " << typeid(Ret).name() << ", "
@@ -3151,7 +3148,6 @@ void Module::sendToDetector(int fnum, const Arg &args, std::nullptr_t) {
template <typename Ret>
void Module::sendToDetector(int fnum, std::nullptr_t, Ret &retval) const {
std::cout << "in line 3107\n";
LOG(logDEBUG1) << "Sending: ["
<< getFunctionNameFromEnum(static_cast<detFuncs>(fnum))
<< ", nullptr, 0, " << typeid(Ret).name() << ", "
@@ -3178,7 +3174,6 @@ void Module::sendToDetector(int fnum) {
}
template <typename Ret> Ret Module::sendToDetector(int fnum) const {
std::cout << "in line 3135\n";
LOG(logDEBUG1) << "Sending: ["
<< getFunctionNameFromEnum(static_cast<detFuncs>(fnum))
<< ", nullptr, 0, " << typeid(Ret).name() << ", "