elementfactory: promote factory not found log message to WARNING

In most cases people really want to know when an element
could not be created.
This commit is contained in:
Tim-Philipp Müller 2017-03-08 14:51:42 +00:00
parent 89082272f8
commit fdd5665b66

View file

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