]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
Remove log whenever a transport changes status
authorAndreas Öman <andreas@lonelycoder.com>
Mon, 25 Aug 2008 19:33:28 +0000 (19:33 +0000)
committerAndreas Öman <andreas@lonelycoder.com>
Mon, 25 Aug 2008 19:33:28 +0000 (19:33 +0000)
transports.c

index f5f1fdac331955ba518c42ec64bcf519f2402c58..f63fec8f016fadb451873d726b5d224df96f974a 100644 (file)
@@ -631,18 +631,9 @@ transport_is_available(th_transport_t *t)
 void
 transport_signal_status(th_transport_t *t, int newstatus)
 {
-  char buf[200];
-
   if(t->tht_last_status == newstatus)
     return;
 
-  snprintf(buf, sizeof(buf), "\"%s\" on %s",
-          t->tht_chname ?: t->tht_svcname, t->tht_sourcename(t));
-
-  tvhlog(LOG_INFO, "transport", "%s -- Changed status from \"%s\" to \"%s\"",
-        buf, transport_status_to_text(t->tht_last_status),
-        transport_status_to_text(newstatus));
-
   t->tht_last_status = newstatus;
   notify_transprot_status_change(t);
 }