diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-09-27 16:46:20 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-09-29 17:00:51 +0800 |
commit | 90d9f4f454d2612643f1e17703df02661649ca12 (patch) | |
tree | 6bb22c0f2c1305242969eb5284f842b965ef2f8f /libempathy-gtk | |
parent | 0f7279a3bbbe4bfd4dceb06e54ec983082d6c58f (diff) | |
download | gsoc2013-empathy-90d9f4f454d2612643f1e17703df02661649ca12.tar gsoc2013-empathy-90d9f4f454d2612643f1e17703df02661649ca12.tar.gz gsoc2013-empathy-90d9f4f454d2612643f1e17703df02661649ca12.tar.bz2 gsoc2013-empathy-90d9f4f454d2612643f1e17703df02661649ca12.tar.lz gsoc2013-empathy-90d9f4f454d2612643f1e17703df02661649ca12.tar.xz gsoc2013-empathy-90d9f4f454d2612643f1e17703df02661649ca12.tar.zst gsoc2013-empathy-90d9f4f454d2612643f1e17703df02661649ca12.zip |
add debug output
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-contact-widget.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-contact-widget.c b/libempathy-gtk/empathy-contact-widget.c index 2cb725d07..0226f21bd 100644 --- a/libempathy-gtk/empathy-contact-widget.c +++ b/libempathy-gtk/empathy-contact-widget.c @@ -314,11 +314,14 @@ contact_widget_details_update_edit (EmpathyContactWidget *information) { /* We found the field, make a copy for the details_to_set list */ field = tp_contact_info_field_copy (field); + DEBUG ("Field %s is in our vCard", spec->name); } else { /* Empathy doesn't support editing this file and it's not in the * contact's fields so we can't do much with it. */ + DEBUG ("Field %s is not in our vCard", spec->name); + if (field_data == NULL) continue; |