diff options
author | Peter Bieringer <pb@bieringer.de> | 2021-12-20 19:13:00 +0100 |
---|---|---|
committer | Peter Bieringer <pb@bieringer.de> | 2021-12-20 19:13:00 +0100 |
commit | 9690f6d8a0e14a30bf9cb8951645ad2f78849814 (patch) | |
tree | b81848cc897aca2634744c7d61689186305db5e3 /coreengine | |
parent | 5e5e5c4fbc228625f40c2d503515879f69c05062 (diff) | |
download | vdr-plugin-skindesigner-9690f6d8a0e14a30bf9cb8951645ad2f78849814.tar.gz vdr-plugin-skindesigner-9690f6d8a0e14a30bf9cb8951645ad2f78849814.tar.bz2 |
remove debug lines
Diffstat (limited to 'coreengine')
-rw-r--r-- | coreengine/viewelement.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/coreengine/viewelement.c b/coreengine/viewelement.c index 43fb8c3..7f2a072 100644 --- a/coreengine/viewelement.c +++ b/coreengine/viewelement.c @@ -633,7 +633,6 @@ bool RecordingIsHD(const cEvent* event, const tChannelID channelID) { }; if ((isHD == false) && (type == -1) && (!(channelID == tChannelID::InvalidID))) { - dsyslog("skindesigner: Title='%s' ShortText='%s' isHD=%d type=%d channelID=%s", event->Title(), event->ShortText(), isHD, type, *channelID.ToString()); // fallback to retrieve via channel (in case of EPG issues) #if defined (APIVERSNUM) && (APIVERSNUM >= 20301) LOCK_CHANNELS_READ; @@ -642,7 +641,6 @@ bool RecordingIsHD(const cEvent* event, const tChannelID channelID) { const cChannel *channel = Channels.GetByChannelID(channelID); #endif if (channel) { - dsyslog("skindesigner: Title='%s' ShortText='%s' isHD=%d type=%d Channel='%s'", event->Title(), event->ShortText(), isHD, type, channel->Name()); switch (channel->Vtype()) { case 0x1b: // H.264 case 0x24: // H.265 |