Browse Source

feat(JitsiConference): lower log severity if caps couldn't be discovered

dev1
Saúl Ibarra Corretgé 7 years ago
parent
commit
02a7e4f343
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      JitsiConference.js

+ 1
- 1
JitsiConference.js View File

1177
             participant._supportsDTMF = features.has('urn:xmpp:jingle:dtmf:0');
1177
             participant._supportsDTMF = features.has('urn:xmpp:jingle:dtmf:0');
1178
             this.updateDTMFSupport();
1178
             this.updateDTMFSupport();
1179
         },
1179
         },
1180
-        error => logger.error(`Failed to discover features of ${jid}`, error));
1180
+        error => logger.warn(`Failed to discover features of ${jid}`, error));
1181
 
1181
 
1182
     this._maybeStartOrStopP2P();
1182
     this._maybeStartOrStopP2P();
1183
 };
1183
 };

Loading…
Cancel
Save