From d29f9c70c962ae9541376392d3b366e3be3bdfeb Mon Sep 17 00:00:00 2001 From: vanhofen Date: Fri, 18 Jun 2021 23:08:11 +0200 Subject: [PATCH] eitd/xmlutil: shorten console messages Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/35cfdd542a533ac408d3b6d775983cd77a448159 Author: vanhofen Date: 2021-06-18 (Fri, 18 Jun 2021) Origin message was: ------------------ - eitd/xmlutil: shorten console messages ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/eitd/xmlutil.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/eitd/xmlutil.cpp b/src/eitd/xmlutil.cpp index 287cf3d2d..718a5592d 100644 --- a/src/eitd/xmlutil.cpp +++ b/src/eitd/xmlutil.cpp @@ -590,7 +590,7 @@ bool readEventsFromDir(std::string &epgdir, int &ev_count) { struct dirent **namelist; int n = scandir(epgdir.c_str(), &namelist, my_filter, NULL); - debug(DEBUG_NORMAL, "Reading Information from directory %s, file count %d", epgdir.c_str(), n); + debug(DEBUG_NORMAL, "Reading data from directory %s, file count %d", epgdir.c_str(), n); if (n <= 0) return false; @@ -624,12 +624,12 @@ void *insertEventsfromFile(void * data) if (index_parser == NULL) { readEventsFromDir(epg_dir, ev_count); - debug(DEBUG_NORMAL, "Reading Information finished after %" PRId64 " milliseconds (%d events) from %s", + debug(DEBUG_NORMAL, "Reading data finished after %" PRId64 " ms (%d events) from %s", time_monotonic_ms()-now, ev_count, epg_dir.c_str()); reader_ready = true; pthread_exit(NULL); } - debug(DEBUG_NORMAL, "Reading Information from file: %s", indexname.c_str()); + debug(DEBUG_NORMAL, "Reading data from file: %s", indexname.c_str()); eventfile = xmlDocGetRootElement(index_parser); eventfile = xmlChildrenNode(eventfile); @@ -642,7 +642,7 @@ 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", + debug(DEBUG_NORMAL, "Reading data finished after %" PRId64 " ms (%d events) from %s", time_monotonic_ms()-now, ev_count, epgname.c_str()); eventfile = xmlNextNode(eventfile); @@ -685,7 +685,7 @@ void *insertEventsfromXMLTV(void * data) pthread_exit(NULL); } - debug(DEBUG_NORMAL, "Reading Information finished after %" PRId64 " milliseconds (%d events) from %s", + debug(DEBUG_NORMAL, "Reading data finished after %" PRId64 " ms (%d events) from %s", time_monotonic_ms()-now, ev_count, url.c_str()); reader_ready = true;