@itentialopensource/adapter-utils 5.10.4 → 5.10.6
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/lib/cacheHandler.js +2 -0
- package/package.json +1 -1
package/lib/cacheHandler.js
CHANGED
|
@@ -485,6 +485,8 @@ class CacheHandler {
|
|
|
485
485
|
// destroy cache and properties for memory efficiency
|
|
486
486
|
if (wasEnabled) {
|
|
487
487
|
deleteCacheData(this);
|
|
488
|
+
} else {
|
|
489
|
+
log.debug(`${origin}: Cache remains disabled. No action required.`);
|
|
488
490
|
}
|
|
489
491
|
log.warn('Cache was disabled from enabled, removed cache memory.');
|
|
490
492
|
return;
|