xcally-nest-library 0.0.37-XM3778-1765290639 → 0.0.37-XM3778-1765535159

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xcally-nest-library",
3
- "version": "0.0.37-XM3778-1765290639",
3
+ "version": "0.0.37-XM3778-1765535159",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -58,7 +58,8 @@ export class CachedService {
58
58
  const result = await fn();
59
59
 
60
60
  // Store in cache
61
- await this.cacheManager.set(key, JSON.stringify(result));
61
+ const cacheSetResult = await this.cacheManager.set(key, JSON.stringify(result));
62
+ this.logger.debug(`Cached result for key: ${key} - Set status: ${cacheSetResult !== undefined}`);
62
63
 
63
64
  return result;
64
65
  } catch (error) {