mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-30 17:01:08 +02:00
show in log where epg events come from
Origin commit data
------------------
Commit: 6ca1f2d9a0
Author: TangoCash <eric@loxat.de>
Date: 2020-07-01 (Wed, 01 Jul 2020)
This commit is contained in:
@@ -615,8 +615,8 @@ void *insertEventsfromFile(void * data)
|
||||
|
||||
if (index_parser == NULL) {
|
||||
readEventsFromDir(epg_dir, ev_count);
|
||||
debug(DEBUG_NORMAL, "Reading Information finished after %" PRId64 " milliseconds (%d events)",
|
||||
time_monotonic_ms()-now, ev_count);
|
||||
debug(DEBUG_NORMAL, "Reading Information finished after %" PRId64 " milliseconds (%d events) from %s",
|
||||
time_monotonic_ms()-now, ev_count, epg_dir.c_str());
|
||||
reader_ready = true;
|
||||
pthread_exit(NULL);
|
||||
}
|
||||
@@ -633,12 +633,13 @@ void *insertEventsfromFile(void * data)
|
||||
epgname = epg_dir + filename;
|
||||
readEventsFromFile(epgname, ev_count);
|
||||
|
||||
debug(DEBUG_NORMAL, "Reading Information finished after %" PRId64 " milliseconds (%d events) from %s",
|
||||
time_monotonic_ms()-now, ev_count, epgname.c_str());
|
||||
|
||||
eventfile = xmlNextNode(eventfile);
|
||||
}
|
||||
|
||||
xmlFreeDoc(index_parser);
|
||||
debug(DEBUG_NORMAL, "Reading Information finished after %" PRId64 " milliseconds (%d events)",
|
||||
time_monotonic_ms()-now, ev_count);
|
||||
|
||||
reader_ready = true;
|
||||
|
||||
@@ -675,8 +676,8 @@ void *insertEventsfromXMLTV(void * data)
|
||||
pthread_exit(NULL);
|
||||
}
|
||||
|
||||
debug(DEBUG_NORMAL, "Reading Information finished after %" PRId64 " milliseconds (%d events)",
|
||||
time_monotonic_ms()-now, ev_count);
|
||||
debug(DEBUG_NORMAL, "Reading Information finished after %" PRId64 " milliseconds (%d events) from %s",
|
||||
time_monotonic_ms()-now, ev_count, url.c_str());
|
||||
|
||||
reader_ready = true;
|
||||
|
||||
|
Reference in New Issue
Block a user