summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrank Schmirler <vdr@schmirler.de>2013-10-21 22:21:12 +0200
committerFrank Schmirler <vdr@schmirler.de>2013-10-21 22:21:12 +0200
commit69b654d5393189c9c23dcc1241d8ab0588bae355 (patch)
treefa22bbac81542adb9e12dbadd14ad98ccfb3825e
parent5e5070edc0a40f4a4fe5be784ae23d00fca2f217 (diff)
downloadvdr-plugin-streamdev-69b654d5393189c9c23dcc1241d8ab0588bae355.tar.gz
vdr-plugin-streamdev-69b654d5393189c9c23dcc1241d8ab0588bae355.tar.bz2
Removed noisy debug messages
-rw-r--r--HISTORY1
-rw-r--r--client/socket.c5
2 files changed, 2 insertions, 4 deletions
diff --git a/HISTORY b/HISTORY
index a287c24..e624361 100644
--- a/HISTORY
+++ b/HISTORY
@@ -1,6 +1,7 @@
VDR Plugin 'streamdev' Revision History
---------------------------------------
+- Removed noisy debug messages
- Fixed HTTP menu destruction
- API change of VDR 2.1.2
- Fixed priority handling, messed up when adding multi-device support
diff --git a/client/socket.c b/client/socket.c
index c0a6d1f..23a1dca 100644
--- a/client/socket.c
+++ b/client/socket.c
@@ -115,18 +115,15 @@ bool cClientSocket::CheckConnection(void) {
if (IsOpen()) {
cTBSelect select;
- Dprintf("connection open\n");
-
// XXX+ check if connection is still alive (is there a better way?)
// There REALLY shouldn't be anything readable according to PROTOCOL here
// If there is, assume it's an eof signal (subseq. read would return 0)
select.Add(*this, false);
int res;
if ((res = select.Select(0)) == 0) {
- Dprintf("select said nothing happened\n");
return true;
}
- Dprintf("closing connection (res was %d)", res);
+ Dprintf("closing connection (res was %d)\n", res);
Close();
}