main: Remove muted_log_handler
Since glib turns off g_debug spew by default, we don't need to mute it ourselves. https://bugzilla.gnome.org/show_bug.cgi?id=671086
This commit is contained in:
parent
bea5c6f4e6
commit
98aa61e2a4
21
src/main.c
21
src/main.c
@ -217,15 +217,6 @@ shell_perf_log_init (void)
|
|||||||
NULL, NULL);
|
NULL, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
|
||||||
muted_log_handler (const char *log_domain,
|
|
||||||
GLogLevelFlags log_level,
|
|
||||||
const char *message,
|
|
||||||
gpointer data)
|
|
||||||
{
|
|
||||||
/* Intentionally empty to discard message */
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
default_log_handler (const char *log_domain,
|
default_log_handler (const char *log_domain,
|
||||||
GLogLevelFlags log_level,
|
GLogLevelFlags log_level,
|
||||||
@ -321,18 +312,6 @@ main (int argc, char **argv)
|
|||||||
g_irepository_prepend_search_path (BLUETOOTH_DIR);
|
g_irepository_prepend_search_path (BLUETOOTH_DIR);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Disable debug spew from various libraries */
|
|
||||||
g_log_set_handler ("Gvc", G_LOG_LEVEL_DEBUG,
|
|
||||||
muted_log_handler, NULL);
|
|
||||||
g_log_set_handler ("AccountsService", G_LOG_LEVEL_DEBUG,
|
|
||||||
muted_log_handler, NULL);
|
|
||||||
g_log_set_handler ("Bluetooth", G_LOG_LEVEL_DEBUG | G_LOG_LEVEL_MESSAGE,
|
|
||||||
muted_log_handler, NULL);
|
|
||||||
g_log_set_handler ("tp-glib/proxy", G_LOG_LEVEL_DEBUG,
|
|
||||||
muted_log_handler, NULL);
|
|
||||||
g_log_set_handler ("GnomeShellBrowserPlugin", G_LOG_LEVEL_DEBUG,
|
|
||||||
muted_log_handler, NULL);
|
|
||||||
|
|
||||||
/* Turn on telepathy-glib debugging but filter it out in
|
/* Turn on telepathy-glib debugging but filter it out in
|
||||||
* default_log_handler. This handler also exposes all the logs over D-Bus
|
* default_log_handler. This handler also exposes all the logs over D-Bus
|
||||||
* using TpDebugSender. */
|
* using TpDebugSender. */
|
||||||
|
Loading…
Reference in New Issue
Block a user