Open
Description
Description
Request data, such as in a POST request, does not appear in the report in Bugsnag.
Steps to reproduce
- Throw some exception in a controller, for example:
using SubiektOptyk.Requests;
using SubiektOptyk.Responses;
using System;
namespace SubiektOptyk.Controllers
{
public class AuthController : ApiController
{
public LoginResponse Post(LoginRequest loginRequest)
{
throw new Exception("test");
}
}
}
- Make a request to the controller with some data
- See that the request data does not appear in the report.
How do I make Bugsnag display the request information like with the Laravel (PHP) plugin?
Environment
- Bugsnag version: 2.2.1
- .NET framework version: 4.7.2