I am using the ASP.NET Boilerplate framework. I have added my code to web API. I am getting an error "An internal error occurred during your request!", So, I want to debug the API. Can anyone tell me how can I do that? when I call the web API, breakpoint should come in the Service project.
Asked
Active
Viewed 1,186 times
2
-
Please provide a minimal, complete, verifiable example https://stackoverflow.com/help/mcve – Joe Mar 08 '18 at 13:07
-
Possible duplicate of [How to get more detailed exception in ABP?](https://stackoverflow.com/questions/48050689/how-to-get-more-detailed-exception-in-abp) – aaron Mar 08 '18 at 13:18
1 Answers
4
Please follow the points below for the solution to your problem.
- You can open the browser console and in the network tab you can see that which API is getting failed and you can also see the HTTP response code.
- For debugging you can use the solution mentioned here.
- You can also see the full exception details in Logs.txt file on the Web.Host\App_Data\Logs path. For logging, you can refer this document.

Vivek Nuna
- 25,472
- 25
- 109
- 197