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:
parent
01d2afcfc2
commit
9cace319a3
@ -236,7 +236,7 @@ void cSatipDiscover::AddServer(const char *addrP, const char *modelP, const char
|
||||
cSatipServer *tmp = new cSatipServer(addrP, modelP, descP);
|
||||
// Validate against existing servers
|
||||
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);
|
||||
}
|
||||
else
|
||||
|
2
server.c
2
server.c
@ -191,7 +191,7 @@ void cSatipServers::Cleanup(uint64_t intervalMsP)
|
||||
{
|
||||
for (cSatipServer *s = First(); s; s = Next(s)) {
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user