diff options
author | Jonny Lamb <jonnylamb@gnome.org> | 2009-10-30 18:10:26 +0800 |
---|---|---|
committer | Jonny Lamb <jonnylamb@gnome.org> | 2009-10-30 18:10:26 +0800 |
commit | d5f2776bacfe750f02782cef348e984ed68916af (patch) | |
tree | f6f96860b17206dd8166eed34d66457daa5fef7e /src/empathy-status-icon.c | |
parent | 12fcf479a49d90c34a203d1c93050fac762956f3 (diff) | |
download | gsoc2013-empathy-d5f2776bacfe750f02782cef348e984ed68916af.tar gsoc2013-empathy-d5f2776bacfe750f02782cef348e984ed68916af.tar.gz gsoc2013-empathy-d5f2776bacfe750f02782cef348e984ed68916af.tar.bz2 gsoc2013-empathy-d5f2776bacfe750f02782cef348e984ed68916af.tar.lz gsoc2013-empathy-d5f2776bacfe750f02782cef348e984ed68916af.tar.xz gsoc2013-empathy-d5f2776bacfe750f02782cef348e984ed68916af.tar.zst gsoc2013-empathy-d5f2776bacfe750f02782cef348e984ed68916af.zip |
all: log error messages if preparing the account manager fails
Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
Diffstat (limited to 'src/empathy-status-icon.c')
-rw-r--r-- | src/empathy-status-icon.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/empathy-status-icon.c b/src/empathy-status-icon.c index 33c2da031..ba1bef1a4 100644 --- a/src/empathy-status-icon.c +++ b/src/empathy-status-icon.c @@ -560,8 +560,11 @@ account_manager_prepared_cb (GObject *source_object, GList *list, *l; TpAccountManager *account_manager = TP_ACCOUNT_MANAGER (source_object); EmpathyStatusIcon *icon = user_data; + GError *error = NULL; - if (!tp_account_manager_prepare_finish (account_manager, result, NULL)) { + if (!tp_account_manager_prepare_finish (account_manager, result, &error)) { + DEBUG ("Failed to prepare account manager: %s", error->message); + g_error_free (error); return; } |