diff options
author | chriszero <zerov83@gmail.com> | 2015-01-13 20:56:08 +0100 |
---|---|---|
committer | chriszero <zerov83@gmail.com> | 2015-01-13 20:56:08 +0100 |
commit | 6cd88fdcab8dd291c610a8a5a6a2f6499f6c6d3f (patch) | |
tree | 7f930ee6fee6ae4eb44435de5d6215fe3be4d80f /plexgdm.cpp | |
parent | d40d85f7ce39d5e8301173a7d21707dd8c3ab5cd (diff) | |
download | vdr-plugin-plex-6cd88fdcab8dd291c610a8a5a6a2f6499f6c6d3f.tar.gz vdr-plugin-plex-6cd88fdcab8dd291c610a8a5a6a2f6499f6c6d3f.tar.bz2 |
Added syslog messages
Diffstat (limited to 'plexgdm.cpp')
-rw-r--r-- | plexgdm.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/plexgdm.cpp b/plexgdm.cpp index 769e5dd..a2aeb6d 100644 --- a/plexgdm.cpp +++ b/plexgdm.cpp @@ -101,7 +101,6 @@ try { } catch(Poco::Exception &exc){ esyslog("[plex]Exception in %s s%", __func__, exc.displayText().c_str() ); - std::cout << "[plex]Exception: in " << __func__ << " | " << exc.displayText() << std::endl; } } @@ -130,12 +129,10 @@ void plexgdm::discover() if(buf.find("200 OK") != std::string::npos) { vBuffer[sender.host().toString()] = buf; } - //std::cout << "Discover received from: " << sender.host().toString() << "\nData:\n" << buf << std::endl; } } catch(Poco::TimeoutException &exc){ - //dsyslog("[plex]TimeoutException in %s s%", __func__, exc.displayText().c_str() ); - std::cout << "[plex]TimeoutException: in " << __func__ << " | " << exc.displayText() << std::endl; + dsyslog("[plex]TimeoutException in %s s%", __func__, exc.displayText().c_str() ); } socket.close(); @@ -151,7 +148,6 @@ void plexgdm::discover() void plexgdm::stopRegistration() { - std::cout << "stop Reg" << std::endl; if(m_registrationIsRunning) { m_registrationIsRunning = false; m_waitCondition.Broadcast(); |