chore: debug tests failing in CI

This commit is contained in:
Stevan Freeborn
2026-01-04 22:16:27 -06:00
parent e41338eda2
commit 3123db088b
2 changed files with 9 additions and 1 deletions
@@ -19,7 +19,7 @@ internal sealed class GlobalExceptionHandler(ILogger<GlobalExceptionHandler> log
{
Status = StatusCodes.Status500InternalServerError,
Title = "Server Error",
Detail = "An internal error occurred."
Detail = exception.Message,
};
httpContext.Response.StatusCode = problemDetails.Status.Value;