diff --git a/DDNSUpdater/Services/DDNSService.cs b/DDNSUpdater/Services/DDNSService.cs index 5316011..e4e31cc 100644 --- a/DDNSUpdater/Services/DDNSService.cs +++ b/DDNSUpdater/Services/DDNSService.cs @@ -21,7 +21,9 @@ public class DDNSService : IDDNSService { _logger = logger; APIKey = configuration.GetValue("APIKey"); + logger.LogDebug($"Got the Following Key: {APIKey}"); Domains = configuration.GetSection("Domains").Get>(); + logger.LogDebug($"Got the Following Domains: {Domains.ToString()}"); } public async void Start()