diff --git a/src/GroundsForSupport.Server/Logging/GlobalExceptionHandler.cs b/src/GroundsForSupport.Server/Logging/GlobalExceptionHandler.cs index 9315759..cd17070 100644 --- a/src/GroundsForSupport.Server/Logging/GlobalExceptionHandler.cs +++ b/src/GroundsForSupport.Server/Logging/GlobalExceptionHandler.cs @@ -19,7 +19,7 @@ internal sealed class GlobalExceptionHandler(ILogger log { Status = StatusCodes.Status500InternalServerError, Title = "Server Error", - Detail = exception.Message, + Detail = "An unexpected error occurred. Please try again later." }; httpContext.Response.StatusCode = problemDetails.Status.Value;