Added logging to application.

This commit is contained in:
Daniel Wathen
2023-01-06 09:15:40 -07:00
parent 6de41bc8da
commit 9ee0b14ee9
6 changed files with 94 additions and 12 deletions

View File

@ -18,6 +18,8 @@ namespace ReportingServices.UI.Controllers
_logger = logger;
_configuration = configuration;
_baseUrl = _configuration.GetValue<string>("BaseAPIAddress");
_logger.LogInformation("Base API Address: {baseUrl}", _baseUrl);
}