diff options
author | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2009-07-31 01:30:25 +0800 |
---|---|---|
committer | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2009-07-31 01:30:25 +0800 |
commit | f54c1834d7a8dc0de0f6f4c1ae60910a38944d05 (patch) | |
tree | 98ca23b66ca526d19786aa775723a741fe5cebe5 /libempathy | |
parent | 4e38b2c3eab6a2a19906db5c4933870beb6ce626 (diff) | |
download | gsoc2013-empathy-f54c1834d7a8dc0de0f6f4c1ae60910a38944d05.tar gsoc2013-empathy-f54c1834d7a8dc0de0f6f4c1ae60910a38944d05.tar.gz gsoc2013-empathy-f54c1834d7a8dc0de0f6f4c1ae60910a38944d05.tar.bz2 gsoc2013-empathy-f54c1834d7a8dc0de0f6f4c1ae60910a38944d05.tar.lz gsoc2013-empathy-f54c1834d7a8dc0de0f6f4c1ae60910a38944d05.tar.xz gsoc2013-empathy-f54c1834d7a8dc0de0f6f4c1ae60910a38944d05.tar.zst gsoc2013-empathy-f54c1834d7a8dc0de0f6f4c1ae60910a38944d05.zip |
add some slightly nicer debug messages
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-account.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libempathy/empathy-account.c b/libempathy/empathy-account.c index 5cf489769..4585d33cf 100644 --- a/libempathy/empathy-account.c +++ b/libempathy/empathy-account.c @@ -356,7 +356,8 @@ empathy_account_got_all_cb (TpProxy *proxy, if (error != NULL) { - printf ("Unhappy\n"); + DEBUG ("Failed to get the initial set of account properties: %s", + error->message); return; } @@ -907,7 +908,7 @@ empathy_account_requested_presence_cb (TpProxy *proxy, GObject *weak_object) { if (error) - DEBUG (":( : %s", error->message); + DEBUG ("Failed to set the requested presence: %s", error->message); } |