jason-trace-log 1.0.10 → 1.0.12

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.
@@ -853,7 +853,7 @@ var BaseTrace = /** @class */ (function () {
853
853
  console.error('Failed to log trace data:', error);
854
854
  }
855
855
  };
856
- BaseTrace.prototype.info = function (message, tag, extra) {
856
+ BaseTrace.prototype.info = function (message, extra, tag) {
857
857
  this.log({
858
858
  name: 'customer-info',
859
859
  type: TraceDataTypes.LOG,
@@ -865,7 +865,7 @@ var BaseTrace = /** @class */ (function () {
865
865
  extra: extra
866
866
  });
867
867
  };
868
- BaseTrace.prototype.warn = function (message, tag, extra) {
868
+ BaseTrace.prototype.warn = function (message, extra, tag) {
869
869
  this.log({
870
870
  name: 'customer-warning',
871
871
  type: TraceDataTypes.LOG,
@@ -877,7 +877,7 @@ var BaseTrace = /** @class */ (function () {
877
877
  extra: extra
878
878
  });
879
879
  };
880
- BaseTrace.prototype.error = function (message, tag, extra) {
880
+ BaseTrace.prototype.error = function (message, extra, tag) {
881
881
  this.log({
882
882
  name: 'customer-error',
883
883
  type: TraceDataTypes.LOG,