Added Logs for checking the Envs

This commit is contained in:
Elias Stepanik 2023-02-01 08:44:24 +01:00
parent d7ecc19e5e
commit fc7e9638da

View File

@ -21,7 +21,9 @@ public class DDNSService : IDDNSService
{
_logger = logger;
APIKey = configuration.GetValue<string>("APIKey");
logger.LogDebug($"Got the Following Key: {APIKey}");
Domains = configuration.GetSection("Domains").Get<List<string>>();
logger.LogDebug($"Got the Following Domains: {Domains.ToString()}");
}
public async void Start()