@twilio/mcs-client 0.6.6 → 0.6.7-rc.1
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/builds/browser.js +13 -9
- package/builds/browser.js.map +1 -1
- package/builds/lib.js +13 -9
- package/builds/lib.js.map +1 -1
- package/builds/twilio-mcs-client.js +13 -9
- package/builds/twilio-mcs-client.min.js +1 -1
- package/dist/logger.js +6 -2
- package/dist/logger.js.map +1 -1
- package/dist/packages/mcs-client/package.json.js +1 -1
- package/package.json +4 -4
package/builds/lib.js
CHANGED
|
@@ -373,11 +373,13 @@ var Logger = /*#__PURE__*/function () {
|
|
|
373
373
|
value:
|
|
374
374
|
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */
|
|
375
375
|
function trace() {
|
|
376
|
-
|
|
377
|
-
args
|
|
378
|
-
|
|
376
|
+
if (log__namespace.getLevel() == log__namespace.levels.TRACE) {
|
|
377
|
+
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
378
|
+
args[_key] = arguments[_key];
|
|
379
|
+
}
|
|
379
380
|
|
|
380
|
-
|
|
381
|
+
log__namespace.debug.apply(null, prepareLine(this.prefix + "T", args));
|
|
382
|
+
}
|
|
381
383
|
}
|
|
382
384
|
}, {
|
|
383
385
|
key: "debug",
|
|
@@ -428,11 +430,13 @@ var Logger = /*#__PURE__*/function () {
|
|
|
428
430
|
}, {
|
|
429
431
|
key: "trace",
|
|
430
432
|
value: function trace() {
|
|
431
|
-
|
|
432
|
-
args
|
|
433
|
-
|
|
433
|
+
if (log__namespace.getLevel() == log__namespace.levels.TRACE) {
|
|
434
|
+
for (var _len6 = arguments.length, args = new Array(_len6), _key6 = 0; _key6 < _len6; _key6++) {
|
|
435
|
+
args[_key6] = arguments[_key6];
|
|
436
|
+
}
|
|
434
437
|
|
|
435
|
-
|
|
438
|
+
log__namespace.debug.apply(null, prepareLine("T", args));
|
|
439
|
+
}
|
|
436
440
|
}
|
|
437
441
|
}, {
|
|
438
442
|
key: "debug",
|
|
@@ -1104,7 +1108,7 @@ var Network = /*#__PURE__*/function () {
|
|
|
1104
1108
|
return Network;
|
|
1105
1109
|
}();
|
|
1106
1110
|
|
|
1107
|
-
var version = "0.6.
|
|
1111
|
+
var version = "0.6.7-rc.1";
|
|
1108
1112
|
|
|
1109
1113
|
var _class;
|
|
1110
1114
|
var log = Logger.scope("");
|