]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
Log when a http streams starts and stops
authorJohn Törnblom <john.tornblom@gmail.com>
Mon, 5 Mar 2012 16:51:52 +0000 (17:51 +0100)
committerJohn Törnblom <john.tornblom@gmail.com>
Mon, 5 Mar 2012 16:51:52 +0000 (17:51 +0100)
src/webui/webui.c

index 267507ec3f8a241c6322fede116b9d62968f8f90..58ea8e006c1a69c135cd4e85db840cb8d85d1cf1 100644 (file)
@@ -178,6 +178,7 @@ http_stream_run(http_connection_t *hc, streaming_queue_t *sq, th_subscription_t
       break;
 
     case SMT_START: {
+      tvhlog(LOG_DEBUG, "webui",  "Start streaming %s", hc->hc_url_orig);
       if(s->ths_service->s_servicetype == ST_RADIO)
        http_output_content(hc, "audio/x-matroska");
       else
@@ -196,6 +197,7 @@ http_stream_run(http_connection_t *hc, streaming_queue_t *sq, th_subscription_t
       break;
 
     case SMT_NOSTART:
+      tvhlog(LOG_DEBUG, "webui",  "Couldn't start stream for %s", hc->hc_url_orig);
       run = 0;
       break;