By default error logging is turned off in .Net Core, .Net which is excellent for security.
Unlike ASP.NET and Classic ASP it will not send errors to the client browser by default.
Therefore in order to debug apps on this stack please enable error logging as follows:
- Edit your web.config file in your applications root and change the stdoutLogEnabled attribute from "false" to "true".
- Create a "Logs" folder in the root directory of your application.
- Run your application and the debugging log will be created.
- Open the debugging files in the Logs folder to see any errors being produced by your application.
- Once you have debugged your issues please disable debugging again in the web.config to prevent constant log file generation.
If you have any issues or need help please open a support ticket and our team will help you resolve everything.