From fc7e9638da7735fa717b66eac338aa535a4e60b1 Mon Sep 17 00:00:00 2001 From: Elias Stepanik Date: Wed, 1 Feb 2023 08:44:24 +0100 Subject: [PATCH] Added Logs for checking the Envs --- DDNSUpdater/Services/DDNSService.cs | 2 ++ 1 file changed, 2 insertions(+) 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()