elementfactory: promote factory not found log message to WARNING
authorTim-Philipp Müller <tim@centricular.com>
Wed, 8 Mar 2017 14:51:42 +0000 (14:51 +0000)
committerTim-Philipp Müller <tim@centricular.com>
Wed, 8 Mar 2017 14:51:42 +0000 (14:51 +0000)
In most cases people really want to know when an element
could not be created.

gst/gstelementfactory.c

index 7d54d45..20704a0 100644 (file)
@@ -456,7 +456,7 @@ gst_element_factory_make (const gchar * factoryname, const gchar * name)
   /* ERRORS */
 no_factory:
   {
-    GST_INFO ("no such element factory \"%s\"!", factoryname);
+    GST_WARNING ("no such element factory \"%s\"!", factoryname);
     return NULL;
   }
 create_failed: