Potential fix for pull request finding

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Jason DeVito 2026-07-08 09:54:14 -05:00 committed by GitHub
parent 02216372bc
commit 22ef9cf7c2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -46,8 +46,9 @@ namespace PepperDash.Essentials.Core.Web.RequestHandlers
context.Response.Write(js, false);
context.Response.End();
}
catch (Exception)
catch (Exception ex)
{
PepperDash.Core.Debug.LogMessage(ex, "Exception handling GET /packageManifest request");
context.Response.StatusCode = 500;
context.Response.StatusDescription = "Internal Server Error";
context.Response.End();