From 493e82e37dc176dfde980ac53136bd5debd04e99 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Thu, 17 Feb 2011 10:54:30 -0500 Subject: [PATCH] gnome_shell_plugin_start: fix bluetooth g_log muting gnome-bluetooth changed its G_LOG_DOMAIN, so it was escaping our filters. Fix that. --- src/gnome-shell-plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gnome-shell-plugin.c b/src/gnome-shell-plugin.c index f9692ff26..59823bd94 100644 --- a/src/gnome-shell-plugin.c +++ b/src/gnome-shell-plugin.c @@ -478,7 +478,7 @@ gnome_shell_plugin_start (MetaPlugin *plugin) muted_log_handler, NULL); g_log_set_handler ("GdmUser", G_LOG_LEVEL_DEBUG, muted_log_handler, NULL); - g_log_set_handler ("libgnome-bluetooth", G_LOG_LEVEL_DEBUG | G_LOG_LEVEL_MESSAGE, + g_log_set_handler ("Bluetooth", G_LOG_LEVEL_DEBUG | G_LOG_LEVEL_MESSAGE, muted_log_handler, NULL); /* Initialize the global object here. */