소스 검색

Fixes console log for Strophe attaching

dev1
hristoterezov 9 년 전
부모
커밋
5f38cf9232
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      modules/xmpp/xmpp.js

+ 1
- 1
modules/xmpp/xmpp.js 파일 보기

167
  * @param options {object} connecting options - rid, sid, jid and password.
167
  * @param options {object} connecting options - rid, sid, jid and password.
168
  */
168
  */
169
  XMPP.prototype.attach = function (options) {
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
     this.connection.attach(options.jid, options.sid, parseInt(options.rid,10)+1,
171
     this.connection.attach(options.jid, options.sid, parseInt(options.rid,10)+1,
172
         this.connectionHandler.bind(this, options.password));
172
         this.connectionHandler.bind(this, options.password));
173
 }
173
 }

Loading…
취소
저장