diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-12-16 15:31:47 +0100 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-12-16 16:18:59 +0100 |
commit | 9444fd8d967aaa28282df6e3c5fc9d62bcc61f1e (patch) | |
tree | 3dd278820be3358d623d23a2de648f00d5d496e4 | |
parent | 5f66dfc17b21dc0ee71481944aa200aa2767347d (diff) |
raise a warning if we can't connect to MessageSent
-rw-r--r-- | telepathy-glib/text-channel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/telepathy-glib/text-channel.c b/telepathy-glib/text-channel.c index 4678a6642..d81c226ef 100644 --- a/telepathy-glib/text-channel.c +++ b/telepathy-glib/text-channel.c @@ -301,7 +301,7 @@ tp_text_channel_constructed (GObject *obj) message_sent_cb, NULL, NULL, NULL, &err); if (err != NULL) { - DEBUG ("Failed to connect to MessageSent: %s", err->message); + WARNING ("Failed to connect to MessageSent: %s", err->message); g_error_free (err); } } |