diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-12-04 17:22:02 +0000 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-12-07 10:43:07 +0000 |
commit | a06796617e51b913dc5d466fb317b178d782f135 (patch) | |
tree | 1d2469651735f1cf94fa0a1ceea2b26be0e63246 /src/bytestream-factory.c | |
parent | b43ca913add25cc76ed10e8b6643d866419aa348 (diff) | |
download | telepathy-gabble-a06796617e51b913dc5d466fb317b178d782f135.tar.gz |
proxies_disco_cb: log a debug msg if disco failed
Diffstat (limited to 'src/bytestream-factory.c')
-rw-r--r-- | src/bytestream-factory.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/bytestream-factory.c b/src/bytestream-factory.c index 92eb39076..df6f05599 100644 --- a/src/bytestream-factory.c +++ b/src/bytestream-factory.c @@ -431,7 +431,10 @@ proxies_disco_cb (GabbleDisco *disco, priv->proxies_list_expired = FALSE; if (error != NULL) - return; + { + DEBUG ("disco failed: %s", error->message); + return; + } for (i = node_iter (query_result); i; i = node_iter_next (i)) { |