summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-12-22 11:35:10 +0100
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-12-22 11:36:44 +0100
commit82c7eef57a72a2bc5f620827cc95f7a67eca2042 (patch)
tree3a912c46fb380565c954e9d51f775a1a698820ec
parentb65cff3d7e5f385546f1e201aeb2f94fcb9d2f45 (diff)
automatic proxy factory: add a debug msg if we can't create a TpTextChannel
-rw-r--r--telepathy-glib/automatic-proxy-factory.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/telepathy-glib/automatic-proxy-factory.c b/telepathy-glib/automatic-proxy-factory.c
index 360d4eefe..ea1240936 100644
--- a/telepathy-glib/automatic-proxy-factory.c
+++ b/telepathy-glib/automatic-proxy-factory.c
@@ -139,6 +139,9 @@ tp_automatic_proxy_factory_create_channel_impl (
if (tp_strv_contains (interfaces, TP_IFACE_CHANNEL_INTERFACE_MESSAGES))
return TP_CHANNEL (tp_text_channel_new (conn, path, properties,
error));
+
+ DEBUG ("channel %s doesn't implement Messages so we can't create "
+ "a TpTextChannel", path);
}
return tp_channel_new_from_properties (conn, path, properties, error);