This commit is contained in:
Michael Davidsaver
2020-02-20 09:37:29 -08:00
parent 65e3af5ef8
commit 8c646cd65a
2 changed files with 5 additions and 2 deletions
+2 -2
View File
@@ -66,8 +66,8 @@ struct evbase::Pvt : public epicsThreadRunable
// TODO: cleanup after pending event_base_once()
if(logerr.test(ret ? Level::Crit : Level::Info))
errlogPrintf("Exit loop worker: %d for %p\n", ret, base);
auto lvl = ret ? Level::Crit : Level::Info;
log_printf(logerr, lvl, "Exit loop worker: %d for %p\n", ret, base);
}
};
+3
View File
@@ -458,6 +458,9 @@ void Server::Pvt::onSearch(const UDPManager::Search& msg)
uint16_t nreply = 0;
for(const auto& name : searchOp._names) {
log_debug_printf(serverio, " %sclaim %s\n",
name._claim ? "" : "dis",
name._name);
if(name._claim)
nreply++;
}