From 55c74f36db41e2c2950caa4ab6c4b484e87e8dbd Mon Sep 17 00:00:00 2001 From: Alan Bridgeman Date: Wed, 8 Apr 2026 16:09:35 -0500 Subject: [PATCH] attempting to improve page not found logic --- src/Router.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Router.ts b/src/Router.ts index bf760c0..cfd3cd4 100644 --- a/src/Router.ts +++ b/src/Router.ts @@ -437,7 +437,7 @@ export class Router { } res.status(404); - next('Page Not Found'); + next(`Page (${req.path}) Not Found`); }); const loadedErrorControllers = loadedControllerObjects