summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthlo <smarttv640@gmail.com>2014-01-07 21:06:13 +0100
committerthlo <smarttv640@gmail.com>2014-01-07 21:06:13 +0100
commit66217a45b7f733a33c08db66ddc19c6192eb63aa (patch)
tree8c10b3ab616cc9d79f24291f34204f09ee98f76b
parent928c9f9f2093822d57c28ab04fef8ed73968f834 (diff)
downloadvdr-plugin-smarttvweb-66217a45b7f733a33c08db66ddc19c6192eb63aa.tar.gz
vdr-plugin-smarttvweb-66217a45b7f733a33c08db66ddc19c6192eb63aa.tar.bz2
Debug improvements.
-rwxr-xr-xresponselive.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/responselive.c b/responselive.c
index 31f271a..8ce7024 100755
--- a/responselive.c
+++ b/responselive.c
@@ -82,12 +82,12 @@ void cLiveRelay::Activate(bool On) {
// this method is called by vdr
if (On) {
// Start();
- *(Log::getInstance()->log()) << "mReqId= " << mReqId
+ *(Log::getInstance()->log()) << DEBUGPREFIX
<< " cLiveRelay::Activate called by VDR for chan_id= " << mChannelId <<endl;
}
else {
// Cancel();
- *(Log::getInstance()->log()) << "mReqId= " << mReqId
+ *(Log::getInstance()->log()) << DEBUGPREFIX
<< " cLiveRelay::Deactivate for chan_id= " << mChannelId <<endl;
}
}