From 351ff352748d2f77012a741a0f58ee3857af101b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96man?= Date: Mon, 25 Aug 2008 19:33:40 +0000 Subject: [PATCH] Remove \n in log messages --- serviceprobe.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/serviceprobe.c b/serviceprobe.c index 6f071c31..215d0a15 100644 --- a/serviceprobe.c +++ b/serviceprobe.c @@ -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); }