tests: plugin: improve debug message
authorFrancisco Velazquez <francisv@ifi.uio.no>
Fri, 25 Mar 2016 14:55:18 +0000 (15:55 +0100)
committerTim-Philipp Müller <tim@centricular.com>
Sun, 17 Apr 2016 17:40:53 +0000 (18:40 +0100)
https://bugzilla.gnome.org/show_bug.cgi?id=764199

tests/check/gst/gstplugin.c

index 7e69629947a7322df38dce246147e0b34954d2fe..bb710d591dcd1ae1407fc697aa289a3cd70fc4a1 100644 (file)
@@ -60,7 +60,7 @@ GST_START_TEST (test_registry)
     GstPlugin *plugin = GST_PLUGIN (g->data);
 
     /* one for the registry, one for the list */
-    GST_DEBUG ("refcount %d %s", GST_OBJECT_REFCOUNT_VALUE (plugin),
+    GST_DEBUG ("Plugin refcount %d %s", GST_OBJECT_REFCOUNT_VALUE (plugin),
         gst_plugin_get_name (plugin));
     ASSERT_OBJECT_REFCOUNT (plugin, "plugin in registry", 2);
 
@@ -73,7 +73,7 @@ GST_START_TEST (test_registry)
     GstPluginFeature *feature = GST_PLUGIN_FEATURE (g->data);
 
     /* one for the registry, one for the list */
-    GST_DEBUG ("refcount %d %s", GST_OBJECT_REFCOUNT_VALUE (feature),
+    GST_DEBUG ("Feature refcount %d %s", GST_OBJECT_REFCOUNT_VALUE (feature),
         GST_OBJECT_NAME (feature));
     ASSERT_OBJECT_REFCOUNT (feature, "feature in registry", 2);
     gst_object_unref (feature);