summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Thompson <will.thompson@collabora.co.uk>2010-06-16 15:36:34 +0100
committerWill Thompson <will.thompson@collabora.co.uk>2010-06-16 16:14:56 +0100
commit0692f156df434142231f53f37dd03d87eab38ff1 (patch)
tree8914e5d2f28ff5e89e74f2e2dbf7c9afbe5b6968
parent1e7a95255453b727079e68f7077b311cb40fc570 (diff)
downloadtelepathy-mission-control-0692f156df434142231f53f37dd03d87eab38ff1.tar.gz
Include reconnection time in debug message
-rw-r--r--src/mcd-connection.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mcd-connection.c b/src/mcd-connection.c
index 622e6d74..ba96a9d7 100644
--- a/src/mcd-connection.c
+++ b/src/mcd-connection.c
@@ -1111,7 +1111,8 @@ mcd_connection_invalidated_cb (TpConnection *tp_conn,
* abort the connection but try to reconnect later */
if (priv->reconnect_timer == 0)
{
- DEBUG ("Preparing for reconnection");
+ DEBUG ("Preparing for reconnection in %u seconds",
+ priv->reconnect_interval);
priv->reconnect_timer = g_timeout_add_seconds
(priv->reconnect_interval,
(GSourceFunc)mcd_connection_reconnect, connection);