Comparing version 2.3.14 to 2.3.15
# Change Log | ||
## [2.3.14] | ||
## [2.3.15] | ||
- Fixed translating Error and other classes | ||
@@ -5,0 +5,0 @@ |
{ | ||
"name": "residue", | ||
"version": "2.3.14", | ||
"version": "2.3.15", | ||
"description": "Library to interact with residue server seamlessly.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -40,3 +40,3 @@ // | ||
this._write_log = (level, vlevel, fmt, ...args) => { | ||
const fullMessage = CommonUtils.translateArgs(...args); | ||
const fullMessage = CommonUtils.translateArgs(true, ...args); | ||
@@ -43,0 +43,0 @@ residue_native.write_log(this.id, |
@@ -59,3 +59,3 @@ // | ||
exports.translateArgs = (...args) => { | ||
exports.translateArgs = (logErrorStack, ...args) => { | ||
const cpy = args; | ||
@@ -62,0 +62,0 @@ for (var idx = 0; idx < cpy.length; ++idx) { |
@@ -452,3 +452,3 @@ // | ||
const fullMessage = CommonUtils.translateArgs(...args); | ||
const fullMessage = CommonUtils.translateArgs(true, ...args); | ||
const request = { | ||
@@ -455,0 +455,0 @@ _t: Utils.getTimestamp(), |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
39061