removed unecessary logging
This commit is contained in:
parent
b0a3c717d2
commit
eb21475658
|
@ -276,7 +276,6 @@ public class XmppConnection implements Runnable {
|
||||||
} else if (nextTag.isStart("r")) {
|
} else if (nextTag.isStart("r")) {
|
||||||
tagReader.readElement(nextTag);
|
tagReader.readElement(nextTag);
|
||||||
AckPacket ack = new AckPacket(this.stanzasReceived, smVersion);
|
AckPacket ack = new AckPacket(this.stanzasReceived, smVersion);
|
||||||
// Log.d(LOGTAG,ack.toString());
|
|
||||||
tagWriter.writeStanzaAsync(ack);
|
tagWriter.writeStanzaAsync(ack);
|
||||||
} else if (nextTag.isStart("a")) {
|
} else if (nextTag.isStart("a")) {
|
||||||
Element ack = tagReader.readElement(nextTag);
|
Element ack = tagReader.readElement(nextTag);
|
||||||
|
@ -285,7 +284,6 @@ public class XmppConnection implements Runnable {
|
||||||
if (serverSequence > this.stanzasSent) {
|
if (serverSequence > this.stanzasSent) {
|
||||||
this.stanzasSent = serverSequence;
|
this.stanzasSent = serverSequence;
|
||||||
}
|
}
|
||||||
// Log.d(LOGTAG,"server ack"+ack.toString()+" ("+this.stanzasSent+")");
|
|
||||||
} else if (nextTag.isStart("failed")) {
|
} else if (nextTag.isStart("failed")) {
|
||||||
tagReader.readElement(nextTag);
|
tagReader.readElement(nextTag);
|
||||||
Log.d(LOGTAG, account.getJid() + ": resumption failed");
|
Log.d(LOGTAG, account.getJid() + ": resumption failed");
|
||||||
|
@ -299,9 +297,6 @@ public class XmppConnection implements Runnable {
|
||||||
processMessage(nextTag);
|
processMessage(nextTag);
|
||||||
} else if (nextTag.isStart("presence")) {
|
} else if (nextTag.isStart("presence")) {
|
||||||
processPresence(nextTag);
|
processPresence(nextTag);
|
||||||
} else {
|
|
||||||
Log.d(LOGTAG, "found unexpected tag: " + nextTag.getName()
|
|
||||||
+ " as child of " + currentTag.getName());
|
|
||||||
}
|
}
|
||||||
nextTag = tagReader.readTag();
|
nextTag = tagReader.readTag();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue