Don't send all debug messages to Telepathy
The log handler can be invoked at bad times, and in particular it can be invoked from gsignal with the signal lock taken. At that time, calling into arbitrary high-level APIs can cause a dead-lock. Instead, only send to telepathy the tp-glib debug messages. Everything else is in the journal anyway. https://bugzilla.gnome.org/show_bug.cgi?id=724256
This commit is contained in:
parent
0f3c129b95
commit
f6240e114c
@ -271,7 +271,9 @@ default_log_handler (const char *log_domain,
|
||||
|
||||
g_get_current_time (&now);
|
||||
|
||||
tp_debug_sender_add_message (sender, &now, log_domain, log_level, message);
|
||||
/* Send telepathy debug through DBus */
|
||||
if (log_domain != NULL && g_str_has_prefix (log_domain, "tp-glib"))
|
||||
tp_debug_sender_add_message (sender, &now, log_domain, log_level, message);
|
||||
|
||||
/* Filter out telepathy-glib logs, we don't want to flood Shell's output
|
||||
* with those. */
|
||||
|
Loading…
Reference in New Issue
Block a user