summaryrefslogtreecommitdiff
path: root/import.cpp
diff options
context:
space:
mode:
authorJochen Dolze <vdr@dolze.de>2012-05-12 17:14:17 +0200
committerJochen Dolze <vdr@dolze.de>2012-05-12 17:14:17 +0200
commit364a698b0ec11d993f7960f65a8bbe8adca8b148 (patch)
tree6dc924c75bd44209cae926bacdf7cc56357fb2bb /import.cpp
parent3ab137c54bd6afce85546ef34e30a59f0d3382b3 (diff)
downloadvdr-plugin-xmltv2vdr-364a698b0ec11d993f7960f65a8bbe8adca8b148.tar.gz
vdr-plugin-xmltv2vdr-364a698b0ec11d993f7960f65a8bbe8adca8b148.tar.bz2
Changed title- and shorttext-handler
Added epgsearch config examples
Diffstat (limited to 'import.cpp')
-rw-r--r--import.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/import.cpp b/import.cpp
index a63e3e9..bad0515 100644
--- a/import.cpp
+++ b/import.cpp
@@ -858,7 +858,7 @@ bool cImport::PutEvent(cEPGSource *Source, sqlite3 *Db, cSchedule* Schedule,
if (description)
{
description=AddEOT2Description(description,true);
- tsyslogs(Source,"{%i} adding EOT to '%s'",Event->EventID(),Event->Title());
+ tsyslogs(Source,"{%5i} adding EOT to '%s'",Event->EventID(),Event->Title());
Event->SetDescription(description);
free(description);
}
@@ -880,7 +880,7 @@ bool cImport::PutEvent(cEPGSource *Source, sqlite3 *Db, cSchedule* Schedule,
int len=strlen(buf);
if (len>0) buf[len-1]=0;
- tsyslogs(Source,"{%i} changing %s of '%s'/'%s'@%s-%s",Event->EventID(),
+ tsyslogs(Source,"{%5i} changing %s of '%s'/'%s'@%s-%s",Event->EventID(),
buf,Event->Title(),Event->ShortText() ? Event->ShortText() : "",
from,till);
}
@@ -1073,7 +1073,7 @@ cXMLTVEvent *cImport::AddXMLTVEvent(cEPGSource *Source,sqlite3 *Db, const char *
}
else
{
- tsyslogs(Source,"{%i} adding '%s'/'%s' to db",xevent->EventID(),xevent->Title(),xevent->ShortText());
+ tsyslogs(Source,"{%5i} adding '%s'/'%s' to db",xevent->EventID(),xevent->Title(),xevent->ShortText());
}
return xevent;
}
@@ -1156,7 +1156,7 @@ bool cImport::UpdateXMLTVEvent(cEPGSource *Source, sqlite3 *Db, const cEvent *Ev
strcat(buf,"eiteventid");
}
- tsyslogs(Source,"{%i} updating %s of '%s' in db",Event->EventID(),buf,
+ tsyslogs(Source,"{%5i} updating %s of '%s' in db",Event->EventID(),buf,
Event->Title());
}