Added logging nuget packages to allow for logging capabilities.

This commit is contained in:
Daniel Wathen
2022-12-09 14:17:39 -07:00
parent 32d8ad8b3c
commit 43957fe66d
7 changed files with 91 additions and 8 deletions

View File

@ -15,6 +15,7 @@ namespace ReportingServices.Controllers
public IActionResult Index()
{
_logger.LogInformation("Starting Index Page");
return View();
}