@ikonintegration/ikapi 3.0.10 → 3.0.11
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/package.json +1 -1
- package/src/Logger/IKLogger.js +1 -1
package/package.json
CHANGED
package/src/Logger/IKLogger.js
CHANGED
|
@@ -114,7 +114,7 @@ export default class IKLogger {
|
|
|
114
114
|
/* Sensitive information handling */
|
|
115
115
|
_supressSensitiveInfo(value) {
|
|
116
116
|
//realy false
|
|
117
|
-
if (this._config.enableSensitiveFiltering !== undefined && !this._config.enableSensitiveFiltering) return value;
|
|
117
|
+
if (this._config.enableSensitiveFiltering !== undefined && (!this._config.enableSensitiveFiltering || this._config.enableSensitiveFiltering == 'false')) return value;
|
|
118
118
|
if (typeof value == "string") {
|
|
119
119
|
//content based replacement
|
|
120
120
|
blacklist.forEach((f) => {
|