Quellcode durchsuchen

Fixes console log for Strophe attaching

master
hristoterezov vor 9 Jahren
Ursprung
Commit
5f38cf9232
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1
    1
      modules/xmpp/xmpp.js

+ 1
- 1
modules/xmpp/xmpp.js Datei anzeigen

@@ -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
 }

Laden…
Abbrechen
Speichern