From 4754b38d74b0feb22defe57e721dba355e6a8b85 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Thu, 14 Sep 2006 20:12:04 +0000 Subject: [PATCH] add an INFO line for when we actually update the fd Original commit message from CVS: add an INFO line for when we actually update the fd --- ChangeLog | 5 +++++ plugins/elements/gstfdsrc.c | 1 + 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index 750331a6bc..eaf79db98e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-09-14 Thomas Vander Stichele + + * plugins/elements/gstfdsrc.c: (gst_fd_src_update_fd): + add an INFO line for when we actually update the fd + 2006-09-14 Thomas Vander Stichele * configure.ac: diff --git a/plugins/elements/gstfdsrc.c b/plugins/elements/gstfdsrc.c index e7eb0fe9c7..6e9cdfbcd0 100644 --- a/plugins/elements/gstfdsrc.c +++ b/plugins/elements/gstfdsrc.c @@ -193,6 +193,7 @@ gst_fd_src_update_fd (GstFdSrc * src) struct stat stat_results; src->fd = src->new_fd; + GST_INFO_OBJECT (src, "Updating to fd %d", src->fd); g_free (src->uri); src->uri = g_strdup_printf ("fd://%d", src->fd);