Remove \n in log messages
This commit is contained in:
parent
eb72304d5b
commit
351ff35274
1 changed files with 2 additions and 2 deletions
|
@ -90,7 +90,7 @@ sp_packet_input(void *opaque, th_muxstream_t *tms, th_pkt_t *pkt)
|
|||
th_transport_t *t = sp->sp_t;
|
||||
channel_t *ch;
|
||||
|
||||
tvhlog(LOG_INFO, "serviceprobe", "Probed \"%s\" -- Ok\n", t->tht_svcname);
|
||||
tvhlog(LOG_INFO, "serviceprobe", "Probed \"%s\" -- Ok", t->tht_svcname);
|
||||
|
||||
if(t->tht_ch == NULL && t->tht_svcname != NULL) {
|
||||
ch = channel_find(t->tht_svcname, 1, NULL);
|
||||
|
@ -131,7 +131,7 @@ sp_status_callback(struct th_subscription *s, int status, void *opaque)
|
|||
}
|
||||
|
||||
tvhlog(LOG_INFO, "serviceprobe",
|
||||
"Probed \"%s\" -- %s\n", t->tht_svcname, errtxt);
|
||||
"Probed \"%s\" -- %s", t->tht_svcname, errtxt);
|
||||
dtimer_arm(&sp->sp_timer, sp_done_callback, sp, 0);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue