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

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