@twilio/mcs-client 0.6.7-rc.0 → 0.6.7
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 +3 -3
package/builds/browser.js
CHANGED
|
@@ -407,11 +407,13 @@ var Logger = /*#__PURE__*/function () {
|
|
|
407
407
|
value:
|
|
408
408
|
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */
|
|
409
409
|
function trace() {
|
|
410
|
-
|
|
411
|
-
args
|
|
412
|
-
|
|
410
|
+
if (log__namespace.getLevel() == log__namespace.levels.TRACE) {
|
|
411
|
+
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
412
|
+
args[_key] = arguments[_key];
|
|
413
|
+
}
|
|
413
414
|
|
|
414
|
-
|
|
415
|
+
log__namespace.debug.apply(null, prepareLine(this.prefix + "T", args));
|
|
416
|
+
}
|
|
415
417
|
}
|
|
416
418
|
}, {
|
|
417
419
|
key: "debug",
|
|
@@ -462,11 +464,13 @@ var Logger = /*#__PURE__*/function () {
|
|
|
462
464
|
}, {
|
|
463
465
|
key: "trace",
|
|
464
466
|
value: function trace() {
|
|
465
|
-
|
|
466
|
-
args
|
|
467
|
-
|
|
467
|
+
if (log__namespace.getLevel() == log__namespace.levels.TRACE) {
|
|
468
|
+
for (var _len6 = arguments.length, args = new Array(_len6), _key6 = 0; _key6 < _len6; _key6++) {
|
|
469
|
+
args[_key6] = arguments[_key6];
|
|
470
|
+
}
|
|
468
471
|
|
|
469
|
-
|
|
472
|
+
log__namespace.debug.apply(null, prepareLine("T", args));
|
|
473
|
+
}
|
|
470
474
|
}
|
|
471
475
|
}, {
|
|
472
476
|
key: "debug",
|
|
@@ -1138,7 +1142,7 @@ var Network = /*#__PURE__*/function () {
|
|
|
1138
1142
|
return Network;
|
|
1139
1143
|
}();
|
|
1140
1144
|
|
|
1141
|
-
var version = "0.6.7
|
|
1145
|
+
var version = "0.6.7";
|
|
1142
1146
|
|
|
1143
1147
|
var _class;
|
|
1144
1148
|
var log = Logger.scope("");
|