diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2017-05-01 13:06:32 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2017-05-01 13:06:32 +0200 |
commit | 84b8ea8395c77a66418c32dabf159abca75c09d5 (patch) | |
tree | 6425cb79248ed81b8a5c1009d9a98491a25b9e0a /menu.c | |
parent | 9491948f04d20f86133dbe8cf8dbd6997aeb5b62 (diff) | |
download | vdr-84b8ea8395c77a66418c32dabf159abca75c09d5.tar.gz vdr-84b8ea8395c77a66418c32dabf159abca75c09d5.tar.bz2 |
Log messages about switching channels now include the channel ID
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.c 4.25 2017/04/20 09:15:49 kls Exp $ + * $Id: menu.c 4.26 2017/05/01 13:01:00 kls Exp $ */ #include "menu.h" @@ -5185,7 +5185,7 @@ bool cRecordControls::Start(cTimers *Timers, cTimer *Timer, bool Pause) int Priority = Timer ? Timer->Priority() : Pause ? Setup.PausePriority : Setup.DefaultPriority; cDevice *device = cDevice::GetDevice(Channel, Priority, false); if (device) { - dsyslog("switching device %d to channel %d (%s)", device->DeviceNumber() + 1, Channel->Number(), Channel->Name()); + dsyslog("switching device %d to channel %d %s (%s)", device->DeviceNumber() + 1, Channel->Number(), *Channel->GetChannelID().ToString(), Channel->Name()); if (!device->SwitchChannel(Channel, false)) { ShutdownHandler.RequestEmergencyExit(); return false; |