@magic-xpa/utils 4.801.0-dev481.234 → 4.801.0-dev481.235
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/bundles/magic-xpa-utils.umd.js +3 -3
- package/bundles/magic-xpa-utils.umd.js.map +1 -1
- package/bundles/magic-xpa-utils.umd.min.js +1 -1
- package/bundles/magic-xpa-utils.umd.min.js.map +1 -1
- package/esm2015/src/Logger.js +3 -3
- package/esm2015/src/SyncExecutionHelper.js +2 -2
- package/fesm2015/magic-xpa-utils.js +3 -3
- package/fesm2015/magic-xpa-utils.js.map +1 -1
- package/package.json +2 -2
- package/src/Logger.d.ts +2 -2
|
@@ -4116,7 +4116,7 @@
|
|
|
4116
4116
|
enumerable: false,
|
|
4117
4117
|
configurable: true
|
|
4118
4118
|
});
|
|
4119
|
-
Logger.prototype.Initialize = function (logLevel,
|
|
4119
|
+
Logger.prototype.Initialize = function (logLevel, shouldBeep) {
|
|
4120
4120
|
try {
|
|
4121
4121
|
this.LogLevel = logLevel;
|
|
4122
4122
|
this.ShouldBeep = shouldBeep;
|
|
@@ -4219,7 +4219,7 @@
|
|
|
4219
4219
|
console.log(extraMessageStr, RequestInfo.clone(requestInfo));
|
|
4220
4220
|
}
|
|
4221
4221
|
};
|
|
4222
|
-
Logger.prototype.WriteBasicErrorToLog = function (
|
|
4222
|
+
Logger.prototype.WriteBasicErrorToLog = function () {
|
|
4223
4223
|
mscorelib.Debug.Assert(this.LogLevel === exports.Logger_LogLevels.Basic);
|
|
4224
4224
|
};
|
|
4225
4225
|
Logger.prototype.WriteErrorToLog = function (msg) {
|
|
@@ -4676,7 +4676,7 @@
|
|
|
4676
4676
|
SyncExecutionHelper.prototype.Wait = function () {
|
|
4677
4677
|
var _this = this;
|
|
4678
4678
|
Logger.Instance.WriteDevToLog("SyncExecutionHelper.Wait()");
|
|
4679
|
-
return new Promise(function (resolve
|
|
4679
|
+
return new Promise(function (resolve) {
|
|
4680
4680
|
_this.resolver = resolve;
|
|
4681
4681
|
}).then();
|
|
4682
4682
|
};
|