When thinking about deploying your application to a live server you will more than likely want logging functionality. It’s the only real way of troubleshooting any issues that may arise. ASP.NET Core MVC 6 makes it really easy to add logging to the console or debug window in your Startup.cs file. In ConfigureServices method simply add:…