1
0
mirror of https://github.com/rofafor/vdr-plugin-satip.git synced 2023-10-10 13:37:42 +02:00

Reformatted some info messages.

This commit is contained in:
Rolf Ahrenberg 2014-12-16 23:09:31 +02:00
parent 01d2afcfc2
commit 9cace319a3
2 changed files with 2 additions and 2 deletions

View File

@ -236,7 +236,7 @@ void cSatipDiscover::AddServer(const char *addrP, const char *modelP, const char
cSatipServer *tmp = new cSatipServer(addrP, modelP, descP); cSatipServer *tmp = new cSatipServer(addrP, modelP, descP);
// Validate against existing servers // Validate against existing servers
if (!serversM.Update(tmp)) { if (!serversM.Update(tmp)) {
info("Adding device '%s|%s|%s'", tmp->Address(), tmp->Model(), tmp->Description()); info("Adding server '%s|%s|%s'", tmp->Address(), tmp->Model(), tmp->Description());
serversM.Add(tmp); serversM.Add(tmp);
} }
else else

View File

@ -191,7 +191,7 @@ void cSatipServers::Cleanup(uint64_t intervalMsP)
{ {
for (cSatipServer *s = First(); s; s = Next(s)) { for (cSatipServer *s = First(); s; s = Next(s)) {
if (!intervalMsP || (s->LastSeen() > intervalMsP)) { if (!intervalMsP || (s->LastSeen() > intervalMsP)) {
info("Removing device %s (%s %s)", s->Description(), s->Address(), s->Model()); info("Removing server %s (%s %s)", s->Description(), s->Address(), s->Model());
Del(s); Del(s);
} }
} }