summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2015-11-17 10:02:05 -0500
committerMatthias Clasen <mclasen@redhat.com>2015-11-17 10:24:45 -0500
commitc90c2b334016ead4af7444486b5ccafaacbb9e1a (patch)
treecc0237c24ff469024374da367da2c4ac38b7b4c7
parentad9501024c407b8e0f9a985303075b6b590507bb (diff)
downloadgnome-contacts-c90c2b334016ead4af7444486b5ccafaacbb9e1a.tar.gz
search-provider: Don't dump core on timeout
g_error is documented as "This function will result in a core dump". It will get picked up by crash collection systems and cause noise there, which is not helpful. Just log a warning and move on. https://bugzilla.gnome.org/show_bug.cgi?id=758230
-rw-r--r--src/contacts-esd-setup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/contacts-esd-setup.c b/src/contacts-esd-setup.c
index 049635a..936be16 100644
--- a/src/contacts-esd-setup.c
+++ b/src/contacts-esd-setup.c
@@ -115,7 +115,7 @@ gboolean contacts_ensure_eds_accounts (gboolean allow_interaction)
/* If this fails it's game over. */
if (error != NULL)
{
- g_error ("%s: %s", G_STRFUNC, error->message);
+ g_warning ("%s: %s", G_STRFUNC, error->message);
return FALSE;
}