]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
comet: remove debug line
authorJaroslav Kysela <perex@perex.cz>
Tue, 15 Aug 2017 15:15:22 +0000 (17:15 +0200)
committerJaroslav Kysela <perex@perex.cz>
Tue, 15 Aug 2017 15:15:22 +0000 (17:15 +0200)
src/webui/comet.c

index 107f2bd936de897be03113c2b1af459bd5902b3a..0dfaccaf68890ca0903ae72d66b7dba086472b74 100644 (file)
@@ -107,7 +107,6 @@ comet_flush(void)
   for(cmb = LIST_FIRST(&mailboxes); cmb != NULL; cmb = next) {
     next = LIST_NEXT(cmb, cmb_link);
 
-    printf("refcount %d boxid %s last_used %ld mclk %ld\n", cmb->cmb_refcount, cmb->cmb_boxid, mono2sec(cmb->cmb_last_used), mono2sec(mclk()));
     if(cmb->cmb_refcount == 1 &&
        cmb->cmb_last_used && cmb->cmb_last_used + sec2mono(60) < mclk())
       cmb_destroy(cmb);