x11: Replace 'group' debug topic usage with 'x11'

It lets us fit more useful topics within the 32 bit enum.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/4005>
This commit is contained in:
Jonas Ådahl 2024-09-10 17:01:38 +02:00 committed by Marge Bot
parent 98bdaaf87f
commit 446dcf5d08
2 changed files with 4 additions and 4 deletions

View File

@ -88,7 +88,7 @@ meta_group_new (MetaX11Display *x11_display,
meta_group_reload_properties (group, initial_props, N_INITIAL_PROPS);
meta_topic (META_DEBUG_GROUPS,
meta_topic (META_DEBUG_X11,
"Created new group with leader 0x%lx",
group->group_leader);
@ -103,7 +103,7 @@ meta_group_unref (MetaGroup *group)
group->refcount -= 1;
if (group->refcount == 0)
{
meta_topic (META_DEBUG_GROUPS,
meta_topic (META_DEBUG_X11,
"Destroying group with leader 0x%lx",
group->group_leader);

View File

@ -4923,7 +4923,7 @@ meta_window_x11_compute_group (MetaWindow *window)
priv->group->windows = g_slist_prepend (priv->group->windows, window);
meta_topic (META_DEBUG_GROUPS,
meta_topic (META_DEBUG_X11,
"Adding %s to group with leader 0x%lx",
window->desc, group->group_leader);
}
@ -4936,7 +4936,7 @@ remove_window_from_group (MetaWindow *window)
if (priv->group != NULL)
{
meta_topic (META_DEBUG_GROUPS,
meta_topic (META_DEBUG_X11,
"Removing %s from group with leader 0x%lx",
window->desc, priv->group->group_leader);