diff options
-rw-r--r-- | plugins/elements/gstfilesink.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/elements/gstfilesink.c b/plugins/elements/gstfilesink.c index 82b930deb..eb5c7687a 100644 --- a/plugins/elements/gstfilesink.c +++ b/plugins/elements/gstfilesink.c @@ -292,8 +292,8 @@ gst_file_sink_set_location (GstFileSink * sink, const gchar * location, * this should be in UTF8 */ sink->filename = g_strdup (location); sink->uri = gst_filename_to_uri (location, NULL); - GST_INFO ("filename : %s", sink->filename); - GST_INFO ("uri : %s", sink->uri); + GST_INFO_OBJECT (sink, "filename : %s", sink->filename); + GST_INFO_OBJECT (sink, "uri : %s", sink->uri); } else { sink->filename = NULL; sink->uri = NULL; |