sectionsd: improve timeThread info messages

This commit is contained in:
Stefan Seyfried
2016-01-12 09:23:55 +01:00
committed by svenhoefer
parent 04188136a0
commit b67062b62e

View File

@@ -1472,9 +1472,11 @@ void CTimeThread::run()
else else
change(0); change(0);
xprintf("%s: getting DVB time (isOpen %d)\n", name.c_str(), isOpen()); xprintf("%s: get DVB time ch 0x%012" PRIx64 " (isOpen %d)\n",
name.c_str(), current_service, isOpen());
int rc = dmx->Read(static_buf, MAX_SECTION_LENGTH, timeoutInMSeconds); int rc = dmx->Read(static_buf, MAX_SECTION_LENGTH, timeoutInMSeconds);
xprintf("%s: getting DVB time done : %d messaging_neutrino_sets_time %d\n", name.c_str(), rc, messaging_neutrino_sets_time); xprintf("%s: get DVB time ch 0x%012" PRIx64 " rc: %d neutrino_sets_time %d\n",
name.c_str(), current_service, rc, messaging_neutrino_sets_time);
if (rc > 0) { if (rc > 0) {
SIsectionTIME st(static_buf); SIsectionTIME st(static_buf);
if (st.is_parsed()) { if (st.is_parsed()) {