gst/gstpluginfeature.c: more meaningful debug output

Original commit message from CVS:
* gst/gstpluginfeature.c: (gst_plugin_feature_finalize),
(gst_plugin_feature_load):
more meaningful debug output
* configure.ac:
* tests/Makefile.am:
* tests/old/examples/Makefile.am:
make make distcheck happy again
This commit is contained in:
Stefan Kost 2005-12-12 18:12:13 +00:00
parent 18361a05a6
commit 86deff7b5b
4 changed files with 16 additions and 4 deletions

View file

@ -1,3 +1,13 @@
2005-12-12 Stefan Kost <ensonic@users.sf.net>
* gst/gstpluginfeature.c: (gst_plugin_feature_finalize),
(gst_plugin_feature_load):
more meaningful debug output
* configure.ac:
* tests/Makefile.am:
* tests/old/examples/Makefile.am:
make make distcheck happy again
2005-12-12 Tim-Philipp Müller <tim at centricular dot net>
* plugins/elements/gsttypefindelement.c: (stop_typefinding):

View file

@ -68,7 +68,8 @@ gst_plugin_feature_finalize (GObject * object)
{
GstPluginFeature *feature = GST_PLUGIN_FEATURE (object);
GST_DEBUG ("finalizing feature %p", feature);
GST_DEBUG ("finalizing feature %p: '%s'", feature,
GST_PLUGIN_FEATURE_NAME (feature));
g_free (feature->name);
g_free (feature->plugin_name);
@ -103,7 +104,8 @@ gst_plugin_feature_load (GstPluginFeature * feature)
g_return_val_if_fail (feature != NULL, FALSE);
g_return_val_if_fail (GST_IS_PLUGIN_FEATURE (feature), FALSE);
GST_DEBUG ("loading plugin for feature %p", feature);
GST_DEBUG ("loading plugin for feature %p; '%s'", feature,
GST_PLUGIN_FEATURE_NAME (feature));
if (feature->loaded)
return feature;

View file

@ -33,4 +33,3 @@ DIST_SUBDIRS = \
check \
examples \
misc

View file

@ -20,4 +20,5 @@ dirs =
SUBDIRS = $(dirs)
DIST_SUBDIRS = $(dirs)
DIST_SUBDIRS = $(dirs)