diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-01-06 23:30:08 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-01-06 23:46:49 +0800 |
commit | 06adc78c2ea964c5cc993916b7ccdaf1d1067dd4 (patch) | |
tree | 40512a58d953bc2e0535a6c658e06e32d1a330a4 /libempathy-gtk | |
parent | 6137828a9955f5e571a08f503ba46308568fb4e0 (diff) | |
download | gsoc2013-empathy-06adc78c2ea964c5cc993916b7ccdaf1d1067dd4.tar gsoc2013-empathy-06adc78c2ea964c5cc993916b7ccdaf1d1067dd4.tar.gz gsoc2013-empathy-06adc78c2ea964c5cc993916b7ccdaf1d1067dd4.tar.bz2 gsoc2013-empathy-06adc78c2ea964c5cc993916b7ccdaf1d1067dd4.tar.lz gsoc2013-empathy-06adc78c2ea964c5cc993916b7ccdaf1d1067dd4.tar.xz gsoc2013-empathy-06adc78c2ea964c5cc993916b7ccdaf1d1067dd4.tar.zst gsoc2013-empathy-06adc78c2ea964c5cc993916b7ccdaf1d1067dd4.zip |
remove debug message when creating or retrieving a status icon from the cache
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-contact-list-store.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libempathy-gtk/empathy-contact-list-store.c b/libempathy-gtk/empathy-contact-list-store.c index 960e9e457..d284b94b8 100644 --- a/libempathy-gtk/empathy-contact-list-store.c +++ b/libempathy-gtk/empathy-contact-list-store.c @@ -1709,11 +1709,9 @@ contact_list_store_get_contact_status_icon_with_icon_name ( g_hash_table_insert (priv->status_icons, g_strdup (icon_name), pixbuf_status); - DEBUG( "Created status icon %s\n", icon_name); } - } else { - DEBUG( "retrieved from cache status icon %s\n", icon_name); } + g_free (icon_name); return pixbuf_status; } |