diff options
author | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2008-01-25 22:26:57 +0100 |
---|---|---|
committer | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2008-01-25 22:26:57 +0100 |
commit | fb85cdf9f18700f9dbe3f02c59e18662bc04cea9 (patch) | |
tree | 3ed73a2cbe80633e9f77e3132cca3247fcb713bc /recman.cpp | |
parent | e5164d1bb8aaedddb25f3ad4574a1d70e42c9cc0 (diff) | |
download | vdr-plugin-live-fb85cdf9f18700f9dbe3f02c59e18662bc04cea9.tar.gz vdr-plugin-live-fb85cdf9f18700f9dbe3f02c59e18662bc04cea9.tar.bz2 |
Removed debug messages in the recordings_items constructors and
destructors introduced to find the memory leak problem when the
recordings list was recreated.
Updated changelog with the latest changes.
Diffstat (limited to 'recman.cpp')
-rw-r--r-- | recman.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -207,12 +207,12 @@ namespace vdrlive { RecordingsItem(name, parent), m_level(level) { - dsyslog("REC: C: dir %s -> %s", name.c_str(), parent ? parent->Name().c_str() : "ROOT"); + // dsyslog("REC: C: dir %s -> %s", name.c_str(), parent ? parent->Name().c_str() : "ROOT"); } RecordingsItemDir::~RecordingsItemDir() { - dsyslog("REC: D: dir %s", Name().c_str()); + // dsyslog("REC: D: dir %s", Name().c_str()); } @@ -224,12 +224,12 @@ namespace vdrlive { m_recording(recording), m_id(id) { - dsyslog("REC: C: rec %s -> %s", name.c_str(), parent->Name().c_str()); + // dsyslog("REC: C: rec %s -> %s", name.c_str(), parent->Name().c_str()); } RecordingsItemRec::~RecordingsItemRec() { - dsyslog("REC: D: rec %s", Name().c_str()); + // dsyslog("REC: D: rec %s", Name().c_str()); } time_t RecordingsItemRec::StartTime() const |