@ruiapp/rapid-core 0.11.4 → 0.11.5

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/dist/index.js CHANGED
@@ -4986,7 +4986,7 @@ class RapidServer {
4986
4986
  if (!response.status && !response.body) {
4987
4987
  response.json({
4988
4988
  error: {
4989
- message: "No route handler was found to handle this request.",
4989
+ message: `No route handler was found to handle this request. ${rapidRequest.method} ${rapidRequest.url}`,
4990
4990
  },
4991
4991
  }, 404);
4992
4992
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ruiapp/rapid-core",
3
- "version": "0.11.4",
3
+ "version": "0.11.5",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/server.ts CHANGED
@@ -472,7 +472,7 @@ export class RapidServer implements IRpdServer {
472
472
  response.json(
473
473
  {
474
474
  error: {
475
- message: "No route handler was found to handle this request.",
475
+ message: `No route handler was found to handle this request. ${rapidRequest.method} ${rapidRequest.url}`,
476
476
  },
477
477
  },
478
478
  404,