mirror of
https://github.com/igniterealtime/Spark.git
synced 2025-10-29 19:57:28 +00:00
Added better logging to discovery of gateways.
git-svn-id: http://svn.igniterealtime.org/svn/repos/spark/trunk@5319 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
5ab4b4e829
commit
df441baa70
@ -113,7 +113,13 @@ public class GatewayPlugin implements Plugin {
|
||||
Iterator items = discoItems.getItems();
|
||||
while (items.hasNext()) {
|
||||
item = (Item)items.next();
|
||||
info = manager.discoverInfo(item.getEntityID());
|
||||
try {
|
||||
info = manager.discoverInfo(item.getEntityID());
|
||||
}
|
||||
catch (XMPPException e) {
|
||||
Log.error(e);
|
||||
continue;
|
||||
}
|
||||
Iterator identities = info.getIdentities();
|
||||
while (identities.hasNext()) {
|
||||
identity = (Identity)identities.next();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user