gst/gstpluginfeature.c: This shouldn't issue a g_warning since it returns NULL if...
authorEdward Hervey <bilboed@bilboed.com>
Sat, 26 Nov 2005 11:28:32 +0000 (11:28 +0000)
committerEdward Hervey <bilboed@bilboed.com>
Sat, 26 Nov 2005 11:28:32 +0000 (11:28 +0000)
Original commit message from CVS:
* gst/gstpluginfeature.c: (gst_plugin_feature_load):
This shouldn't issue a g_warning since it returns NULL if it
couldn't find the plugin, and all functions using this behave
properly on a NULL return. Switching to a GST_WARNING.

ChangeLog
gst/gstpluginfeature.c

index 05a889b..ba20f65 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2005-11-26  Edward Hervey  <edward@fluendo.com>
+
+       * gst/gstpluginfeature.c: (gst_plugin_feature_load):
+       This shouldn't issue a g_warning since it returns NULL if it
+       couldn't find the plugin, and all functions using this behave
+       properly on a NULL return. Switching to a GST_WARNING.
+
 2005-11-25  Jan Schmidt  <thaytan@mad.scientist.com>
 
        * gst/gstbin.c: (gst_bin_handle_message_func):
index 86071a3..b2c0bdc 100644 (file)
@@ -110,7 +110,7 @@ gst_plugin_feature_load (GstPluginFeature * feature)
   GST_DEBUG ("loading plugin %s", feature->plugin_name);
   plugin = gst_plugin_load_by_name (feature->plugin_name);
   if (!plugin) {
-    g_critical ("Failed to load plugin containing feature '%s'.",
+    GST_WARNING ("Failed to load plugin containing feature '%s'.",
         GST_PLUGIN_FEATURE_NAME (feature));
     return NULL;
   }