@magic-xpa/utils 4.801.0-dev481.233 → 4.801.0-dev481.237

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.
@@ -4116,7 +4116,7 @@
4116
4116
  enumerable: false,
4117
4117
  configurable: true
4118
4118
  });
4119
- Logger.prototype.Initialize = function (logLevel, internalLogSync, shouldBeep) {
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 (contextID, sessionCounter, clientID, serverID, ex) {
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, reject) {
4679
+ return new Promise(function (resolve) {
4680
4680
  _this.resolver = resolve;
4681
4681
  }).then();
4682
4682
  };