@@ -53555,8 +53555,8 @@ module.exports = StreamManagement;
5355553555 */
5355653556
5355753557var config = {
53558- version: '2.15.3 ',
53559- buildNumber: '1148 ',
53558+ version: '2.15.4 ',
53559+ buildNumber: '1149 ',
5356053560 creds: {
5356153561 'appId': 0,
5356253562 'authKey': '',
@@ -53709,7 +53709,7 @@ QuickBlox.prototype = {
5370953709 * @param {Object} configMap - Settings object for QuickBlox SDK.
5371053710 */
5371153711 init: function(appIdOrToken, authKeyOrAppId, authSecret, accountKey, configMap) {
53712- console.log ('current platform: ', Utils.getEnv());
53712+ Utils.QBLog ('current platform:', Utils.getEnv());
5371353713 if (typeof accountKey === 'string' && accountKey.length) {
5371453714 if (configMap && typeof configMap === 'object') {
5371553715 config.set(configMap);
@@ -54091,7 +54091,6 @@ ServiceProxy.prototype = {
5409154091 qbFetch(qbUrl, qbRequest)
5409254092 .then(function(response) {
5409354093 qbResponse = response;
54094- console.log('qbProxy fetch then 1');
5409554094 if (qbRequest.method === 'GET' || qbRequest.method === 'POST'){
5409654095 var qbTokenExpirationDate = qbResponse.headers.get('qb-token-expirationdate');
5409754096 var headerHasToken = !(qbTokenExpirationDate === null ||
@@ -54115,10 +54114,6 @@ ServiceProxy.prototype = {
5411554114
5411654115 return ' ';
5411754116 }).then(function(body) {
54118- //console.log('HTTP status code: ', qbResponse.headers.status);
54119- //console.log('HTTP response: ', qbResponse);
54120- console.log('qbProxy fetch then 2');
54121- console.log('HTTP body: ', qbResponse);
5412254117 _requestCallback(null, qbResponse, body);
5412354118 }, function(error) {
5412454119 _requestCallback(error);
0 commit comments