gst/gstplugin.c: everything causing a plugin not to load should be at least a WARNING
authorThomas Vander Stichele <thomas@apestaart.org>
Mon, 28 Nov 2005 14:18:22 +0000 (14:18 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Mon, 28 Nov 2005 14:18:22 +0000 (14:18 +0000)
Original commit message from CVS:
* gst/gstplugin.c: (gst_plugin_register_func):
everything causing a plugin not to load should be at least a WARNING

ChangeLog
common
gst/gstplugin.c

index 38a2edf..40b05e6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-11-28  Thomas Vander Stichele  <thomas at apestaart dot org>
+
+       * gst/gstplugin.c: (gst_plugin_register_func):
+         everything causing a plugin not to load should be at least a WARNING
+
 2005-11-28  Stefan Kost  <ensonic@users.sf.net>
 
        * docs/random/ensonic/dparams.txt:
diff --git a/common b/common
index c04ad83..b0b08bc 160000 (submodule)
--- a/common
+++ b/common
@@ -1 +1 @@
-Subproject commit c04ad83a0c184fcd311de39371570b9e773a60d0
+Subproject commit b0b08bcd66ca385364b6f90663585b09693aec67
index d6d90b4..3ea37e2 100644 (file)
@@ -232,7 +232,7 @@ gst_plugin_register_func (GstPlugin * plugin, GModule * module,
 {
   if (!gst_plugin_check_version (desc->major_version, desc->minor_version)) {
     if (GST_CAT_DEFAULT)
-      GST_INFO ("plugin \"%s\" has incompatible version, not loading",
+      GST_WARNING ("plugin \"%s\" has incompatible version, not loading",
           plugin->filename);
     return NULL;
   }
@@ -240,14 +240,14 @@ gst_plugin_register_func (GstPlugin * plugin, GModule * module,
   if (!desc->license || !desc->description || !desc->source ||
       !desc->package || !desc->origin) {
     if (GST_CAT_DEFAULT)
-      GST_INFO ("plugin \"%s\" has incorrect GstPluginDesc, not loading",
+      GST_WARNING ("plugin \"%s\" has incorrect GstPluginDesc, not loading",
           plugin->filename);
     return NULL;
   }
 
   if (!gst_plugin_check_license (desc->license)) {
     if (GST_CAT_DEFAULT)
-      GST_INFO ("plugin \"%s\" has invalid license \"%s\", not loading",
+      GST_WARNING ("plugin \"%s\" has invalid license \"%s\", not loading",
           plugin->filename, desc->license);
     return NULL;
   }
@@ -259,7 +259,7 @@ gst_plugin_register_func (GstPlugin * plugin, GModule * module,
 
   if (!((desc->plugin_init) (plugin))) {
     if (GST_CAT_DEFAULT)
-      GST_INFO ("plugin \"%s\" failed to initialise", plugin->filename);
+      GST_WARNING ("plugin \"%s\" failed to initialise", plugin->filename);
     plugin->module = NULL;
     return NULL;
   }