mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 16:50:47 +00:00
pad: Downgrade GST_WARNING to GST_INFO
It's usually not a problem if a query fails if there's no peer, especially as it will happen during pad linking (caps query) quite often and spams the logs.
This commit is contained in:
parent
775594fa3b
commit
3f9516cef8
1 changed files with 1 additions and 1 deletions
|
@ -3579,7 +3579,7 @@ sticky_failed:
|
||||||
}
|
}
|
||||||
no_peer:
|
no_peer:
|
||||||
{
|
{
|
||||||
GST_WARNING_OBJECT (pad, "pad has no peer");
|
GST_INFO_OBJECT (pad, "pad has no peer");
|
||||||
GST_OBJECT_UNLOCK (pad);
|
GST_OBJECT_UNLOCK (pad);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue