mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2026-06-30 05:11:28 +02:00
WIP
This commit is contained in:
@@ -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() << ", "
|
||||
|
||||
Reference in New Issue
Block a user