Skip to content

Commit

Permalink
client, connection: rm debug
Browse files Browse the repository at this point in the history
  • Loading branch information
astro committed Mar 24, 2012
1 parent 004faaf commit 1d626c6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion lib/xmpp/client.js
Expand Up @@ -128,7 +128,6 @@ Client.prototype.end = function() {
};

Client.prototype.onRawStanza = function(stanza) {
console.log("onRawStanza",this.state,stanza.toString());
/* Actually, we shouldn't wait for <stream:features/> if
this.streamAttrs.version is missing, but who uses pre-XMPP-1.0
these days anyway? */
Expand Down
1 change: 0 additions & 1 deletion lib/xmpp/connection.js
Expand Up @@ -104,7 +104,6 @@ Connection.prototype.send = function(stanza) {
}

if (stanza.root) {
console.log("send",stanza.root.toString());
var el = this.rmStreamNs(stanza.root());
this.socket.serializeStanza(el, function(s) {
flushed = self.socket.write(s);
Expand Down

0 comments on commit 1d626c6

Please sign in to comment.