diff --git a/ChangeLog b/ChangeLog index e60a1b737b..1c352b7dbf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-08-16 Wim Taymans + + * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_add): + Turn a g_print into a DEBUG line. + 2006-08-13 Wim Taymans * sys/oss/gstossmixer.c: (gst_ossmixer_open), (gst_ossmixer_new): diff --git a/gst/udp/gstmultiudpsink.c b/gst/udp/gstmultiudpsink.c index 768b8726a2..670162c00a 100644 --- a/gst/udp/gstmultiudpsink.c +++ b/gst/udp/gstmultiudpsink.c @@ -473,7 +473,7 @@ gst_multiudpsink_add (GstMultiUDPSink * sink, const gchar * host, gint port) if (inet_aton (host, &addr)) { /* check if its a multicast address */ if ((ntohl (addr.s_addr) & 0xe0000000) == 0xe0000000) { - printf ("multicast address detected\n"); + GST_DEBUG_OBJECT (sink, "multicast address detected"); client->multi_addr.imr_multiaddr.s_addr = addr.s_addr; client->multi_addr.imr_interface.s_addr = INADDR_ANY;