cloudflare-next-intl 0.6.23 → 0.6.24

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.
@@ -14,7 +14,9 @@ function resolveFunctionError(value) {
14
14
  return result;
15
15
  }
16
16
  catch (error) {
17
- return `Error during function resolution: ${String(error)}`;
17
+ const message = `Error during function resolution: ${String(error)}`;
18
+ console.warn(message);
19
+ return message;
18
20
  }
19
21
  }
20
22
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cloudflare-next-intl",
3
- "version": "0.6.23",
3
+ "version": "0.6.24",
4
4
  "description": "Optimized Next Intl Package Special for App Router and Cloudflare",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",