From f76c96fe348501554dc6c9cc79ce26bdb9bbcac9 Mon Sep 17 00:00:00 2001 From: Daniel Harvey Date: Thu, 21 May 2026 15:55:34 -0400 Subject: [PATCH] add NotFound page, wire Routes.NotFoundPage, set log level to Debug --- DeepDrftPublic.Client/Pages/NotFound.razor | 8 ++++++++ DeepDrftPublic.Client/Routes.razor | 6 +----- DeepDrftPublic/appsettings.json | 4 ++-- 3 files changed, 11 insertions(+), 7 deletions(-) create mode 100644 DeepDrftPublic.Client/Pages/NotFound.razor diff --git a/DeepDrftPublic.Client/Pages/NotFound.razor b/DeepDrftPublic.Client/Pages/NotFound.razor new file mode 100644 index 0000000..0d95497 --- /dev/null +++ b/DeepDrftPublic.Client/Pages/NotFound.razor @@ -0,0 +1,8 @@ +@page "/404" + + + Not Found + + + Sorry, the content you are looking for does not exist. + \ No newline at end of file diff --git a/DeepDrftPublic.Client/Routes.razor b/DeepDrftPublic.Client/Routes.razor index f2c4332..727367a 100644 --- a/DeepDrftPublic.Client/Routes.razor +++ b/DeepDrftPublic.Client/Routes.razor @@ -1,10 +1,6 @@ - + - - Not found -

Sorry, there's nothing at this address.

-
diff --git a/DeepDrftPublic/appsettings.json b/DeepDrftPublic/appsettings.json index eee283a..6f4ca4f 100644 --- a/DeepDrftPublic/appsettings.json +++ b/DeepDrftPublic/appsettings.json @@ -1,8 +1,8 @@ { "Logging": { "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" + "Default": "Debug", + "Microsoft.AspNetCore": "Debug" } }, "AllowedHosts": "*",