diff options
author | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2008-04-10 22:07:58 +0200 |
---|---|---|
committer | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2008-04-10 22:07:58 +0200 |
commit | 30c8c41ca7ff93449403d306b9aef4f55d6d8ced (patch) | |
tree | 56eddea3dcd9e2ecfb9d5931e0b89f1037435cfb /pages | |
parent | 7c16c0866ab07d6d34cefd2dc2a2465546a52846 (diff) | |
download | vdr-plugin-live-30c8c41ca7ff93449403d306b9aef4f55d6d8ced.tar.gz vdr-plugin-live-30c8c41ca7ff93449403d306b9aef4f55d6d8ced.tar.bz2 |
Commented out some debugging log statements to not clutter syslog withcvs-commit-353
to much information.
Diffstat (limited to 'pages')
-rw-r--r-- | pages/edit_timer.ecpp | 2 | ||||
-rw-r--r-- | pages/timers.ecpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/pages/edit_timer.ecpp b/pages/edit_timer.ecpp index f1c6ca2..838629a 100644 --- a/pages/edit_timer.ecpp +++ b/pages/edit_timer.ecpp @@ -66,7 +66,7 @@ cTimer* timer; timer = 0; if ( !timerid.empty() ) { string tId = SortedTimers::DecodeDomId(timerid); - dsyslog("DEBUG: TIMER: tId = %s", tId.c_str()); + // dsyslog("DEBUG: TIMER: tId = %s", tId.c_str()); timer = timers.GetByTimerId(tId); if ( timer == 0 ) throw HtmlError( tr("Couldn't find timer. Maybe you mistyped your request?") ); diff --git a/pages/timers.ecpp b/pages/timers.ecpp index 654484f..3e6f56d 100644 --- a/pages/timers.ecpp +++ b/pages/timers.ecpp @@ -39,7 +39,7 @@ static const size_t maximumDescriptionLength = 300; timer = 0; if ( !timerid.empty() ) { string tId = SortedTimers::DecodeDomId(timerid); - dsyslog("DEBUG: TIMER: tId = %s", tId.c_str()); + // dsyslog("DEBUG: TIMER: tId = %s", tId.c_str()); timer = timers.GetByTimerId(tId); if ( timer == 0 ) throw HtmlError( tr("Couldn't find timer. Maybe you mistyped your request?") ); |