mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 19:21:06 +00:00
core: Log pad name, not just the pointer
Change a debug statement that was just logging a pad pointer where it could log the pad name more usefully. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6943>
This commit is contained in:
parent
0f8fc27892
commit
e76581fe93
1 changed files with 2 additions and 1 deletions
|
@ -1218,7 +1218,8 @@ gst_element_get_compatible_pad (GstElement * element, GstPad * pad,
|
|||
}
|
||||
} else {
|
||||
GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS,
|
||||
"already linked or cannot be linked (peer = %p)", peer);
|
||||
"already linked or cannot be linked (peer = %" GST_PTR_FORMAT ")",
|
||||
peer);
|
||||
}
|
||||
GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "unreffing pads");
|
||||
|
||||
|
|
Loading…
Reference in a new issue