quickblox 2.17.20-logger → 2.17.22-logger
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/quickblox.js +2 -4
- package/quickblox.min.js +1 -1
- package/src/modules/chat/qbChat.js +0 -2
- package/src/qbConfig.js +1 -1
- package/src/qbStrophe.js +1 -1
package/package.json
CHANGED
package/quickblox.js
CHANGED
|
@@ -43636,8 +43636,6 @@ ChatProxy.prototype = {
|
|
|
43636
43636
|
|
|
43637
43637
|
_OnLogListener: function (message) {
|
|
43638
43638
|
var self = this;
|
|
43639
|
-
Utils.QBLog('[QBChat][TEST]', self);
|
|
43640
|
-
Utils.QBLog('[QBChat][TEST]', typeof self.onLogListener);
|
|
43641
43639
|
if (typeof self.onLogListener === 'function') {
|
|
43642
43640
|
Utils.safeCallbackCall(self.onLogListener, message);
|
|
43643
43641
|
}
|
|
@@ -51502,7 +51500,7 @@ module.exports = StreamManagement;
|
|
|
51502
51500
|
*/
|
|
51503
51501
|
|
|
51504
51502
|
var config = {
|
|
51505
|
-
version: '2.17.
|
|
51503
|
+
version: '2.17.22-logger',
|
|
51506
51504
|
buildNumber: '1161',
|
|
51507
51505
|
creds: {
|
|
51508
51506
|
'appId': 0,
|
|
@@ -52232,7 +52230,7 @@ function Connection(onLogListenerCallback) {
|
|
|
52232
52230
|
onLogListener = config.debug ? onLogListenerCallback : null;
|
|
52233
52231
|
if (onLogListener && typeof onLogListener === 'function') {
|
|
52234
52232
|
Utils.safeCallbackCall(onLogListener,
|
|
52235
|
-
'[QBChat][QBStrophe]' + message + data);
|
|
52233
|
+
'[QBChat][QBStrophe]' + message + JSON.stringify(data));
|
|
52236
52234
|
}
|
|
52237
52235
|
};
|
|
52238
52236
|
|