@eeplatform/core 1.8.2 → 1.8.3

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @eeplatform/core
2
2
 
3
+ ## 1.8.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 8d80c53: Add logger to PSGC get all function
8
+
3
9
  ## 1.8.2
4
10
 
5
11
  ### Patch Changes
package/dist/index.js CHANGED
@@ -7227,6 +7227,10 @@ function usePSGCRepo() {
7227
7227
  cacheKeyOptions.prefix = prefix;
7228
7228
  }
7229
7229
  const cacheKey = (0, import_nodejs_utils39.makeCacheKey)(namespace_collection, { name });
7230
+ import_nodejs_utils39.logger.log({
7231
+ level: "info",
7232
+ message: `Query for getByName PSGC: ${JSON.stringify(query)}`
7233
+ });
7230
7234
  try {
7231
7235
  const cached = await getCache(cacheKey);
7232
7236
  if (cached) {