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.
- package/dist/jason-trace-log.esm.js +3 -3
- package/dist/jason-trace-log.esm.js.map +1 -1
- package/dist/jason-trace-log.umd.js +3 -3
- package/dist/jason-trace-log.umd.js.map +1 -1
- package/dist/lib/baseTrace.js +3 -3
- package/dist/lib/baseTrace.js.map +1 -1
- package/dist/types/baseTrace.d.ts +3 -3
- package/package.json +1 -2
|
@@ -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,
|
|
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,
|
|
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,
|
|
880
|
+
BaseTrace.prototype.error = function (message, extra, tag) {
|
|
881
881
|
this.log({
|
|
882
882
|
name: 'customer-error',
|
|
883
883
|
type: TraceDataTypes.LOG,
|