diff options
author | David Teirney <david@teirney.net> | 2012-06-12 22:37:26 +1200 |
---|---|---|
committer | David Teirney <david@teirney.net> | 2012-06-19 20:55:19 +1200 |
commit | 1186e91dded0fa4b19f0ce32668476afed61538d (patch) | |
tree | fab1bdc226de377e5e478a7a4f335b5c04867f99 /lib/cmyth | |
parent | 44c4e5920e794074e91f76e86ae158539c606f9f (diff) |
Remove printf statements from recorder.c
Diffstat (limited to 'lib/cmyth')
-rw-r--r-- | lib/cmyth/libcmyth/recorder.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/cmyth/libcmyth/recorder.c b/lib/cmyth/libcmyth/recorder.c index d0ebbcedce..b6bd987201 100644 --- a/lib/cmyth/libcmyth/recorder.c +++ b/lib/cmyth/libcmyth/recorder.c @@ -509,7 +509,6 @@ cmyth_recorder_pause(cmyth_recorder_t rec) pthread_mutex_lock(&mutex); - PRINTF("** SSDEBUG: trying to pause recorder:%p:%p\n",rec,rec->rec_conn); sprintf(Buffer, "QUERY_RECORDER %ld[]:[]PAUSE", (long) rec->rec_id); if ((ret=cmyth_send_message(rec->rec_conn, Buffer)) < 0) { cmyth_dbg(CMYTH_DBG_ERROR, @@ -527,7 +526,6 @@ cmyth_recorder_pause(cmyth_recorder_t rec) ret = 0; err: - PRINTF("** SSDEBUG: recorder paused:\n"); pthread_mutex_unlock(&mutex); return ret; |