mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-31 03:29:50 +00:00
docs: Fix log category names in the log tracer
The documentation was incorrectly referring to `GST_QUERY` and `GST_BIN` as GstDebug category names. These two don't follow the pattern of the rest, and instead are named `query` and `bin` respectively. This can be verified from the source code of the _do_init macro in the same gstlog.c file, and from gstbin.c and gstquery.c calls to GST_DEBUG_CATEGORY_INIT(). Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8365>
This commit is contained in:
parent
a6dcbf9446
commit
794ad2841a
1 changed files with 2 additions and 2 deletions
|
@ -59,7 +59,7 @@
|
|||
* * `GST_DEBUG=GST_EVENT:TRACE`
|
||||
* * `pad-push-event-pre`, `pad-push-event-post`
|
||||
* * `pad-send-event-pre`, `pad-send-event-post`
|
||||
* * `GST_DEBUG=GST_QUERY:TRACE`
|
||||
* * `GST_DEBUG=query:TRACE`
|
||||
* * `pad-query-pre`, `pad-query-post`
|
||||
* * `element-query-pre`, `element-query-post`
|
||||
* * `GST_DEBUG=GST_MESSAGE:TRACE`
|
||||
|
@ -71,7 +71,7 @@
|
|||
* * `element-remove-pad`
|
||||
* * `GST_DEBUG=GST_STATES:TRACE`
|
||||
* * `element-change-state-pre`, `element-change-state-post`
|
||||
* * `GST_DEBUG=GST_BIN:TRACE`
|
||||
* * `GST_DEBUG=bin:TRACE`
|
||||
* * `bin-add-pre`, `bin-add-post`
|
||||
* * `bin-remove-pre`, `bin-remove-post`
|
||||
* * `GST_DEBUG=GST_PADS:TRACE`
|
||||
|
|
Loading…
Reference in a new issue