mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-16 04:54:12 +00:00
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:
parent
89082272f8
commit
fdd5665b66
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue