Browse Source

Fixes console log for Strophe attaching

dev1
hristoterezov 9 years ago
parent
commit
5f38cf9232
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      modules/xmpp/xmpp.js

+ 1
- 1
modules/xmpp/xmpp.js View File

@@ -167,7 +167,7 @@ XMPP.prototype._connect = function (jid, password) {
167 167
  * @param options {object} connecting options - rid, sid, jid and password.
168 168
  */
169 169
  XMPP.prototype.attach = function (options) {
170
-    logger.log("(TIME) Strophe attaching\t:" + window.performance.now(),options, options.jid);
170
+    logger.log("(TIME) Strophe Attaching\t:" + window.performance.now());
171 171
     this.connection.attach(options.jid, options.sid, parseInt(options.rid,10)+1,
172 172
         this.connectionHandler.bind(this, options.password));
173 173
 }

Loading…
Cancel
Save