Skip to content

Commit

Permalink
Update with production server information
Browse files Browse the repository at this point in the history
  • Loading branch information
shawnwildermuth committed Jan 21, 2024
1 parent 91b71dc commit 9e636a2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Services/RestDesignExceptionHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ public async ValueTask<bool> TryHandleAsync(HttpContext httpContext,
error = new
{
Message = "Server Error. Please contact support.",
MessageKey = "exceptionThrownServer"
MessageKey = "exceptionThrownServer",
StackTrace = exception.StackTrace,
ExceptionType = exception.GetType().Name
};
}
else
Expand Down

0 comments on commit 9e636a2

Please sign in to comment.